You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SendMmsRequest sendMmsRequest =newSendMmsRequest(); // SendMmsRequest | A JSON or XML payload containing the recipient's phone number and MMS message.
244
-
The recipient number should be in the format '04xxxxxxxx' where x is a digit.
243
+
SendMmsRequest sendMmsRequest =newSendMmsRequest(); // SendMmsRequest | A JSON or XML payload containing the recipient's phone number and MMS message. The recipient number should be in the format '04xxxxxxxx' where x is a digit.
245
244
246
245
try {
247
246
MessageSentResponse result = apiInstance.sendMMS(sendMmsRequest);
**sendMmsRequest** | [**SendMmsRequest**](SendMmsRequest.md)| A JSON or XML payload containing the recipient's phone number and MMS message.
260
-
The recipient number should be in the format '04xxxxxxxx' where x is a digit.
258
+
**sendMmsRequest** | [**SendMmsRequest**](SendMmsRequest.md)| A JSON or XML payload containing the recipient's phone number and MMS message. The recipient number should be in the format '04xxxxxxxx' where x is a digit.
SendSMSRequest sendSMSRequest =newSendSMSRequest(); // SendSMSRequest | A JSON or XML payload containing the recipient's phone number and text message.
301
-
This number can be in international format if preceeded by a ‘+’ or in national format ('04xxxxxxxx') where x is a digit.
298
+
SendSMSRequest sendSMSRequest =newSendSMSRequest(); // SendSMSRequest | A JSON or XML payload containing the recipient's phone number and text message. This number can be in international format if preceeded by a '+' or in national format ('04xxxxxxxx') where x is a digit.
302
299
303
300
try {
304
301
MessageSentResponse result = apiInstance.sendSMS(sendSMSRequest);
**sendSMSRequest** | [**SendSMSRequest**](SendSMSRequest.md)| A JSON or XML payload containing the recipient's phone number and text message.
317
-
This number can be in international format if preceeded by a ‘+’ or in national format ('04xxxxxxxx') where x is a digit.
313
+
**sendSMSRequest** | [**SendSMSRequest**](SendSMSRequest.md)| A JSON or XML payload containing the recipient's phone number and text message. This number can be in international format if preceeded by a '+' or in national format ('04xxxxxxxx') where x is a digit.
**activeDays** | **Integer** | The number of days before for which this number is provisioned. Usually this will be same as the plan you buy. | [optional]
8
8
**notifyURL** | **String** | A notification URL that will be POSTed to whenever a new message (e.g. a reply to a message sent) arrives at this destination address. If this is not provided then you can use the Get /sms or /mms API to poll for reply messages. *Please note that the notification URLs and the Get /sms or /mms call are exclusive. If a notification URL has been set then the GET call will not provide any useful information.* | [optional]
9
-
**callbackData** | **String** | A JSON that will be sent as the body in the POST to the notifyURL. This can be any meaningful data relevant to your application. | [optional]
0 commit comments