# Receive Delivery Receipt via HTTP (DR)

### <mark style="color:green;">`GET`</mark> `/yoursite.com.au/`

When a DR (Delivery receipt) arrives at our SMS Gateway, it will send the following request to your application.

#### Example

<pre class="language-http"><code class="lang-http"><strong>http://www.yoursite.com.au/DeliveryReciept?ORIGINATOR=61412345678&#x26;RECIPIENT=1987654&#x26;PROVIDER=telstra&#x26;VALUE=&#x3C;value>&#x26;MESSAGE_TEXT=Hello%20There&#x26;ID=939ec52e333fbf124a87845d3a5d72e1&#x26;REFERENCE=ABC123&#x26;RESULT=SUCCESS
</strong></code></pre>

#### Body

| Parameter     | Type    | Example                          | Description                                       |
| ------------- | ------- | -------------------------------- | ------------------------------------------------- |
| originator    | integer | 12345                            | The associated shortcode for your service.        |
| recipient     | integer | XX7432104492                     | The recipient you want to send this message to.   |
| provider      | string  | Telstra                          | The network you plan to send the SMS message via. |
| value         | integer | 20                               | The cost of the message.                          |
| message\_text | string  | Hello%20There                    | Your URL encoded message.                         |
| id            | string  | 939ec52e333fbf124a87845d3a5d72e1 | Your unique message ID.                           |
| reference     | string  | ABC123                           | Your own message reference.                       |
| result        | string  | SUCCESS                          | Indicates the result of the message.              |

#### Output

```json
{
 "ORIGINATOR": "61412345678",
 "RECIPIENT": "1987654",
 "PROVIDER": "telstra",
 "VALUE": "20",
 "MESSAGE_TEXT": "Hello%20There",
 "ID": "939ec52e333fbf124a87845d3a5d72e1",
 "REFERENCE": "ABC123",
 "RESULT": "SUCCESS"
}
```

{% hint style="warning" %}
If you would like to receive Delivery Receipts, you need to provide us with the Delivery Receipt destination (URL). Please contact your account manager.
{% endhint %}


---

# Agent Instructions: 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:

```
GET https://wiki.mobivate.com/use-cases/receive-delivery-receipt-via-http-dr.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
