📞
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

Send MMS

Send an MMS Message

GET or POST Request

https://v1.api19.com/mms/send

Argument

Required

Type

source

yes

int

destination

yes

int

message

no

string

url

yes

http://image/url

key

yes

string

Send a GET or POST request with source, destination, message and key to us and we will deliver it to the recipient.

Message is so that you have the ability to send a picture and add a text message with it for no extra charge.

curl -X POST https://v1.api19.com/mms/send \
 -d 'source=3038821111'
 -d 'destination=6038821111'
 -d 'message=yo'
 -d 'url=http://mypics.com/image33.png'
 -d 'key=api_token'
curl https://v1.api19.com/mms/send?key=yourapikey&url=http://picurl.com/img.png&source=3038821111&destination=6038821111&message=yo
{"status":"ok"}

OR

{"status":"error", "error":"invalid source number"}
PreviousSend SMSNextReceive SMS/MMS

Last updated 1 year ago