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

From SMS Wiki
Jump to: navigation, search
(New page: Send_Plain_Group is API function that allows you to send 25 messages to a group of recipients - a group is defined in your account. This page describes error statuses which Send_Plain_Grou...)
 
Line 1: Line 1:
Send_Plain_Group is API function that allows you to send 25 messages to a group of recipients - a group is defined in your account. This page describes error statuses which Send_Plain_Group can generate
+
Send_Plain_Group is API function that allows you to send a message to a group of recipients - a group is defined in your account and can contain any number of recipients. This page describes error statuses which Send_Plain_Group can generate
  
  

Revision as of 10:32, 12 July 2013

Send_Plain_Group is API function that allows you to send a message to a group of recipients - a group is defined in your account and can contain any number of recipients. This page describes error statuses which Send_Plain_Group 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>