# MM7_DeliveryReport Receive delivery reports for sent MT. Get delivery report for previously sent MMS messages. ## Receive Delivery Reports for previously submitted MT Sinch sends delivery reports using the MM7 Delivery Report message type, `DeliveryReportReq`. The delivery report indicates the current state of the original submit request message. We will send a delivery report to your platform only when the appropriate information is available. If the delivery report message is accepted or rejected then respond with an `DeliveryReportRsp`, including a status that indicates why the delivery report was accepted/rejected. For information about the status codes returned for Delivery Reports, please see our [Delivery Report Statuses](/docs/mms/7-service/delivery-report-statuses/) documentation. ## MM7_DeliveryReport.REQ **MM7 delivery report request elements** | **Element** | **Description** | **Returned** | | --- | --- | --- | | TransactionID | This identifies the DeliveryReportReq/DeliveryReportRsp pair. It's Sinch generated ID. | Always | | DeliveryReportReq | Identifies the message as an MM7 Delivery Report. | Always | | MM7Version | Identifies the MM7 Version. (Supported versions are ver-5.3.0 and ver-6.8.0) | Always | | Recipient | The mobile phone number of the end user. This must be a valid mobile number in international format without a leading + symbol; for example, 12515550123 (US) and 447700900750 (UK). | Always | | Sender | Your shortcode. This should match the same information that's linked in the MT configuration, and generally to the service you are providing. | Always | | MessageID | Sinch generated ID linked to the submitted message. This ID was returned to your system in the initial response (SubmitRsp) to your MT MMS request. | Always | | Date | The date and time of the submission of the multimedia message (timestamp). Value is in UTC. | Always | | MMStatus | A code that indicates whether the MT message was delivered successful or failed. For information about the status codes returned for Delivery Reports, please see our [Delivery Report Statuses](/docs/mms/7-service/delivery-report-statuses/) documentation. | Always | | UACapabilities | Also known as MMS User Agent capabilities. This describes the capabilities of the MMS User agent of the mobile handset. | Only when provided by mobile operator | See the [Unsupported MM7 SOAP Elements](/docs/mms/7-service/unsupported-mm7-soap-elements) document for more information. **Example Request** ```xml 10000001 6.8.0 369500617770864640 16175550123 111122 2015-03-16T14:03:51.749Z Retrieved Success ``` ## MM7_DeliveryReport.RES **MM7 delivery report response elements** Your system should respond to the delivery report request with a delivery report response containing the elements described in the following table. | **Element** | **Description** | | --- | --- | | TransactionID | Identifies the DeliveryReportReq/DeliveryReportRsp pair. It's part of the SOAP header. The value that was provided with the deliveryReportReq is returned. | | DeliveryReportRsp | Identifies the message as an MM7 Delivery Report Response. | | MM7Version | Identifies the MM7 Version.(Supported versions are ver-5.3.0 and ver-6.8.0) | | StatusCode | A code that indicates whether you received the MO message request successfully. The status code for successful deliver is 1000. See all [MMS status codes](/docs/mms/7-service/mms-status-codes/). | | StatusText | Description of the status code. | **Example Response** ```xml 1000001 6.8.0 1000 Successfully Received MMS. ``` ## Delivery Report Full Example **Request** ```text POST / HTTP/1.1 SOAPAction: "http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-4" Content-Type: multipart/related; type="text/xml"; Host: api.Mblox.com Content-Length: 2546 x-mblox-operator-id: 0001890 Connection: Keep-Alive 10000001 6.8.0 369500617770864640 16175550123 111122 2015-03-16T14:03:51.749Z Retrieved Success ``` **Response** ```text HTTP/1.1 200 OK Server: Apache Content-Type: text/xml; charset=utf-8 Content-Length: 539 Date: Mon, 16 Mar 2015 14:03:32 GMT 1000001 6.8.0 1000 Successfully Received MMS. ```