Start Alert AI Assistant thread
Generate the first alert-focused response for a request scoped to a specific alert. This compatibility path remains /api/v2/AiAssistants/start, but the request payload is alert-specific and requires providerConfig plus alert context in conversationContext. Provide either conversationContext.metaInstructions with an alert reference such as {alertId:12345}, or provide one or more conversationContext.entityPayloads. Requests that provide neither are rejected.
Headers
Bearer Access Token. For example, "Bearer {YourAPIToken}"
application/json
Use this attribute to specify if the access token has organization admin permissions. If the access token has only account permissions, use the Account-Name attribute to specify which account to access.
Use this attribute to specify which sub-account to access.
Request body
Example request
{
"conversationContext": {
"metaInstructions": "User is asking about this alert? {alertId:12345}",
"entityPayloads": [
{
"entityKey": "Alert",
"entityIdentifier": "12345",
"payloadType": "alert",
"data": {
"alertId": 12345
}
}
]
}
}Response
No Error (AI Assistants start thread)