Skip to main content
POST
/
conversations
/
{id}
/
trigger-native-integration
Trigger Native Integration
curl --request POST \
  --url https://api.attention.tech/v2/conversations/{id}/trigger-native-integration \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "workflowIds": [
    "<string>"
  ],
  "fieldKeys": [
    "<string>"
  ],
  "autoExecution": true
}
'
{
  "workflows": [
    {
      "workflowId": "<string>",
      "runId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Conversation ID

Body

workflowIds
string[]

Specific integration workflow IDs to trigger (empty = all enabled)

fieldKeys
string[]

Specific field keys to push (empty = all confirmed)

autoExecution
boolean

Execution mode: true = aggressive retry, false = conservative

Response

Workflows triggered successfully

workflows
object[]