📞
API Docs
  • Welcome
  • NUMBERS / ORDERING
    • List Areas
    • List Numbers
    • Order Numbers - No Cart
    • Delete Numbers
    • Change Call Forward
    • Vanity Tollfree - Search
    • Vanity Toll Free - Order
  • Shopping Cart Ordering
    • Add Number to Cart
    • List Numbers in Cart
    • Delete Number from Cart
    • Complete Order Cart
  • MY INVENTORY
    • List My Nmbers
    • List Call Flows
    • Change CallFlow
    • CDR Records
  • SMS/MMS
    • Send SMS
    • Send MMS
    • Receive SMS/MMS
    • Receive Delivery Receipts
  • Campaigns
    • Submit TollFree Campaign
  • CALL APIS
    • Calls
    • Set Incoming URL
    • Incoming Calls
    • Listing Calls
    • Making Calls
      • Example Code
        • Outbound to Tel#
        • Outbound to SIP Device
        • Example Responses
    • Modifying Live Calls
      • Examples
    • Recordings
      • Get List of Recordings
      • Delete a Recording
  • CALL API MARKUP
    • API Call Markup Language
      • Say
      • Dial
        • Number
        • Client
        • SIP
      • Play
      • Gather
      • Record
      • Hangup
      • Pause
      • Reject
      • Redirect
  • LOOKUPS
    • Carrier and CNAM
  • Number Portability
    • Validate Portability
    • Lookup Port Request
    • Submit Port Request
  • FAXING
    • Create Outbound Fax
    • Lookup Outbound Fax Status
    • List Faxes
    • Download File
  • registered agent
    • List Companies
    • List Registered Agents
    • List Documents
    • Download Document
    • Create Company
    • Delete Company
    • Create Registered Agent
    • Modify Registered Agent
Powered by GitBook
On this page
  1. SMS/MMS

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
)

(
    [uuid] => s-1c3b-946b-306a-a068-489a8b9ce6f6-02252024
    [source] => 3038882222
    [destination] => 7206321111
    [send_status] => delivered
    [status] => DELIVERED
    [error] => 000
)
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] => rejected
    [status] => REJECTED
    [error] => 600
)

(
    [uuid] => s-1c3b-946b-306a-a068-489a8b9ce6f6-02252024
    [source] => 3038882222
    [destination] => 7206321111
    [send_status] => error
    [status] => error
    [error] => Carrier specific error
)
PreviousReceive SMS/MMSNextSubmit TollFree Campaign

Last updated 1 month ago