Skip to main content
POST
/
chat
/
conversations
Create a conversation
curl --request POST \
  --url https://platform.agentictrust.com/api/v1/chat/conversations \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "endUserExternalId": "<string>"
}
'
{
  "conversationId": "<string>"
}

Authorizations

x-api-key
string
header
required

API key in lum_pk_* format. Pass via x-api-key header or Authorization: Bearer <key>.

Body

application/json
endUserExternalId
string

External identifier for the end user.

Response

Conversation created.

conversationId
string
required