POST api/v1/sms
Request Information
URI Parameters
None.
Body Parameters
SendSMSModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| recipient | string | Required Min length: 10 | |
| phone_dial_code | string | Required String length: inclusive between 2 and 3 | |
| message | string | Required | 
Request Formats
application/json, text/json
            Sample:
        
{
  "recipient": "sample string 1",
  "phone_dial_code": "sample string 2",
  "message": "sample string 3"
}
        application/xml, text/xml
            Sample:
        <SendSMSModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Recipient>sample string 1</Recipient> <CountryCode>sample string 2</CountryCode> <Message>sample string 3</Message> </SendSMSModel>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
MovamApiResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Message | string | None. | |
| Data | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Message": "sample string 1",
  "Data": {}
}
        application/xml, text/xml
            Sample:
<MovamApiResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Message>sample string 1</Message> <Data /> </MovamApiResponse>