Receive Delivery Receipts

Receive a SMS message to your system

Portal Settings

Under User Settings, on the top right of the portal drop down, you can edit your Receive SMS/MMS Delivery Messages urls.

The following data will be posted:

Argument

Value

Type

source

source number

int

destination

destination number

int

send_status

carrier_sent / rejected / delivered

string

status

REJECTED / DELIVRD

string

error

000 / 600

int

Here's an example:

HTTP Post Variables OR JSON posted

(
    [uuid] => s-1c3b-946b-306a-a068-489a8b9ce6f6-02252024
    [source] => 3038882222
    [destination] => 7206321111
    [send_status] => carrier_sent
    [status] => sent
    [error] => 000
)

(
    [uuid] => s-1c3b-946b-306a-a068-489a8b9ce6f6-02252024
    [source] => 3038882222
    [destination] => 7206321111
    [send_status] => delivered
    [status] => DELIVRD
    [error] => 000
)

Last updated