Skip to main content
POST
/
lifecycle
/
{entityType}
/
{entityId}
/
skip-step
Skip optional lifecycle step
curl --request POST \
  --url https://ai.wisepilot.app/api/v1/lifecycle/{entityType}/{entityId}/skip-step \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>"
}
'
{
  "success": true,
  "data": {
    "skipped": true,
    "currentStep": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key prefixed with cr_ (e.g. cr_a1b2c3...)

Path Parameters

entityType
string
required
entityId
string<uuid>
required

Body

application/json
reason
string

Optional reason for skipping

Response

Step skipped

success
boolean
required
data
object