> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.dumgum.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Incoming Content Endpoint

> Receive events from our platform using an incoming content endpoint.

## Event Structure

<ParamField path="event" type="enum<string>" required>
  The name of the event.
  Possible values:

  * `answer.created`
  * `answer.processing`
  * `conversation.dropped`
  * `chat.image.rejected`
</ParamField>

<ParamField path="data" type="object" required>
  The data associated with the event.

  You can find the structure of the data object for each event below:

  * [answer.created](/api-reference/content-creation/webhooks/events/answer-created)
  * [answer.processing](/api-reference/content-creation/webhooks/events/answer-processing)
  * [conversation.dropped](/api-reference/content-creation/webhooks/events/conversation-dropped)
  * [chat.image.rejected](/api-reference/content-creation/webhooks/events/chat-image-rejected)
</ParamField>

<ResponseExample>
  ```json Example theme={null}
  {
    "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": {},
        "cost": "0.025",
        "conversationStopReason": null,
        "conversationStoppedUntil": null,
        "responseTime": 123,
        "sequenceNumber": 123,
        "parentAnswerId": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    }
  }
  ```
</ResponseExample>
