Ticket API
Endpoint to converse with a ticket automation virtual agent.
Request
post/converse/ticket
Headers Parameters:
- AuthorizationstringRequired
String API Key for the bot. The key can be generated on custom CRM integration page in our Ultimate.ai Dashboard. Please see Authentication article to learn more.
- botidstringRequired
The ID of the bot that is sending the event.
Body
RequiredRequest Body Schema:
application/json
- platformConversationIdstring
An ID provided by the custom CRM to identify the conversation. The custom CRM application can decide the format.
- textstring
String content of email
- platformstring
Name of the used platform. For a custom CRM application, this should be "PUBLIC_API".
- metadataarray
Variables to store in session
- keystring
Variable key/name
- valuestring
Variable value
- sanitizeboolean
Variable sanitize flag
Response
The request has been acknowledge and will be processed. The actual response will come through webhooks.
Request Body
{ "platformConversationId": "string", "text": "string", "platform": "string", "metadata": [ { "key": "string", "value": "string", "sanitize": true } ]}