Skip to main content
POST
/
content
/
inbox
/
{id}
/
dispatch-ai
Dispatch AI runner for an inbox item
curl --request POST \
  --url https://ai.wisepilot.app/api/v1/content/inbox/{id}/dispatch-ai \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "itemType": "work_item"
}
'
{
  "success": true,
  "data": {
    "runId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "runnerName": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Work item or opportunity ID

Query Parameters

website_id
string<uuid>

Website ID. Auto-resolved if key has single website scope.

Body

application/json
itemType
enum<string>
required

Which table the item belongs to

Available options:
work_item,
opportunity

Response

Runner dispatched successfully

success
boolean
required
data
object