Difference between revisions of "Error codes for Send Plain Multiple"

From SMS Wiki
Jump to: navigation, search
(New page: '''Send successful - all messages were sent''' ---- <?xml version="1.0" encoding="utf-8" ?> - <SMSSendMultipleResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="htt...)
 
 
Line 1: Line 1:
 +
Send_Plain_Multiple is API function that allows you to send up to 25 messages (same message to 25 recipients) with one function call. This page describes error statuses which Send_Plain_Multiple can generate
 +
 +
 
'''Send successful - all messages were sent'''
 
'''Send successful - all messages were sent'''
 
----
 
----

Latest revision as of 15:56, 3 May 2011

Send_Plain_Multiple is API function that allows you to send up to 25 messages (same message to 25 recipients) with one function call. This page describes error statuses which Send_Plain_Multiple can generate


Send successful - all messages were sent


 <?xml version="1.0" encoding="utf-8" ?> 

- <SMSSendMultipleResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://upsidewireless.com/webservice/sms">

 <isOk>true</isOk> 
 <successCount>3</successCount> 
 <failedCount>0</failedCount> 
 </SMSSendMultipleResult>


Failed sending or partial fail

No recipients - no message will be sent


 <?xml version="1.0" encoding="utf-8" ?> 

- <SMSSendMultipleResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://upsidewireless.com/webservice/sms">

 <isOk>false</isOk> 
 <successCount>0</successCount> 
 <failedCount>0</failedCount> 
 <errorMessages>No recipients</errorMessages> 
 </SMSSendMultipleResult>


Excess maximum recipients - no message will be sent


 <?xml version="1.0" encoding="utf-8" ?> 

- <SMSSendMultipleResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://upsidewireless.com/webservice/sms">

 <isOk>false</isOk> 
 <successCount>0</successCount> 
 <failedCount>26</failedCount> 
 <errorMessages>Excess maximum recipients (25)</errorMessages> 
 <errorNumbers>17788580767,16046668888,17788456789, 456789, 123456, 65743211, ...</errorNumbers> 
 </SMSSendMultipleResult>


Partial Success - some messages will not be sent (in the below example 2)


 <?xml version="1.0" encoding="utf-8" ?> 

- <SMSSendMultipleResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://upsidewireless.com/webservice/sms">

 <isOk>false</isOk> 
 <successCount>3</successCount> 
 <failedCount>2</failedCount> 
 <errorMessages>recipient length invalid,recipient length invalid</errorMessages> 
 <errorNumbers>456789,123456</errorNumbers> 
 </SMSSendMultipleResult>