> For the complete documentation index, see [llms.txt](https://www.docpartner.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.docpartner.dev/en/api/voice-partner/statuses.md).

# Webhooks

Receive the statuses of your voice campaigns

{% hint style="info" %}

#### Please note

To receive statuses, you must set your callback URL (**notifyUrl**) in the API request
{% endhint %}

## Retrieving answering machine drop statuses

After sending a campaign, VoicePartner lets you receive the statuses of your campaigns.\
For more information, [**contact us**](https://www.smspartner.fr/contact).

**Example of a status sent via GET**

```
notifyUrl?campaign_token=oiTCpIVk2jvIY3xcfg&campaign_id=NDA_20230111_00811&delivered_quantity=1&total_quantity=1
```

## Retrieving voice SMS statuses

**Example of a JSON response sent via POST**

<pre class="language-json"><code class="lang-json"><strong>{
</strong>  "campaignId": "XHa7GXvhy6zkhQEf4HtHG",
  "status": "delivered",
  "additionnal_status": "VOICE_ANSWERED",
  "phoneNumber": "006.........",
  "sendAt": "2026-01-13 11:35:00",
  "doneAt": "2026-01-13 11:35:12",
  "duration": 6,
  //If an audio file was added to the request
  "audioFileComplementaire": {
    "status": "Deposit"
  }
}

</code></pre>

**status**

`pending`**`:`**` `` ``Awaiting status `

`delivered: the call was transmitted`

`undelivered: the call was not transmitted`

**additionnal\_status**

`VOICE_ANSWERED: The call was answered`

`VOICE_NOT_ANSWERED: Call not answered`


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://www.docpartner.dev/en/api/voice-partner/statuses.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
