WEBHOOK
ContentCreationIncomingContentEndpoint
{
  "event": "<event-name>",
  "data": {
    "<data-key>": "<data-value>"
  }
}
Use the selector on the right to inspect each event data structure.

Body

event
string
default:answer.created

The name of the event.

Example:

"answer.created"

data
object

Emitted when a generated answer is sent.

Example:
{
"event": "answer.created",
"data": {
"projectId": "<string>",
"answer": {
"id": "answer_XXXXXXXXXXXXXXXXXX",
"userProfileId": "<string>",
"personaProfileId": "<string>",
"type": "TEXT",
"text": "Lorem ipsum dolor sit amet.",
"pictureUrl": null,
"tags": { "banana": "yellow" },
"cost": "0.025",
"conversationStopReason": null,
"conversationStoppedUntil": null,
"createdAt": "2023-11-07T05:31:56Z"
}
}
}