POST
General Information
Transactional SMS's are SMS messages that are typically related to system or account related activity triggered by customer interactions with your brand. Common examples of these SMS messages are:
- Password reminders / resets
- System notifications
- Order confirmation
- Verification messages
- Shipping confirmation
Transactional SMS Web Service Methods
The following table lists supported methods for Transactional SMS Web Service and provides a brief description of each method. Click on the method name for more information.
Method | Description |
---|---|
Queries the status of bulk SMS messages between two dates. | |
Enables Single Shot SMS Reporting by Packet ID. | |
Enables SMS Reporting by Packet ID. | |
Allows you to send SMS message to multiple GSM numbers. | |
Allows you to send bulk SMS messages with Type and KeyID. | |
Allows you to send a single SMS message. | |
Allows you to send a single SMS message with Type and KeyID. | |
Allows you to send an OTP (One Time Password) SMS. | |
Enables Single Shot SMS Sending with PostType and KeyID. | |
SendPersonalSmsToAMember | Enables personal-sms sending to an existing member. |
To interact with any Web Services, developers must first use the Login method to create a SERVICE TICKET. Developers can send requests to other Web Service and methods using this SERVICE TICKET.
SendPersonalSms
<SendPersonalSms> |
---|
Allows you to send a single SMS message. |
Parameters
Parameter | Value | |
---|---|---|
ServiceTicket | ServiceTicket obtained through Login | MANDATORY |
Originator | SMS Sender's Name | MANDATORY |
NumberMessagePair | GSM Number and Text Message | MANDATORY |
Key | GSM Number | MANDATORY |
Value | Message Text | MANDATORY |
BeginTime | Time to start sending the message | MANDATORY |
EndTime | Time to end sending the message | MANDATORY |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendPersonalSms xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <Originator>string</Originator> <NumberMessagePair> <EmKeyValue> <Key>string</Key> <Value>string</Value> </EmKeyValue> <EmKeyValue> <Key>string</Key> <Value>string</Value> </EmKeyValue> </NumberMessagePair> <BeginTime>string</BeginTime> <EndTime>string</EndTime> </SendPersonalSms> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendPersonalSmsResponse xmlns="http://ws.euromsg.com/postsms"> <SendPersonalSmsResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </SendPersonalSmsResult> </SendPersonalSmsResponse> </soap12:Body> </soap12:Envelope>
Error Parameters
Code | Error Message | Description |
---|---|---|
9998 | No session. Please try re-logon. | No active sessions found. Try login again. |
99 | Not a valid orginator! | The SMS sender name is not defined in your account. |
SendBulkSms
<SendBulkSms> |
---|
Allows you to send SMS message to multiple GSM numbers. |
Parameters
Parameter | Value | |
---|---|---|
ServiceTicket | ServiceTicket obtained through Login | MANDATORY |
Originator | SMS Sender's Name | MANDATORY |
Message | SMS Text Message | MANDATORY |
GsmNumbers | GSM Numbers to send SMS to Maximum 5 gsm no should be added. | MANDATORY |
BeginTime | Time to start sending the message | MANDATORY |
EndTime | Time to end sending the message | MANDATORY |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendBulkSms xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <Originator>string</Originator> <Message>string</Message> <GsmNumbers> <string>string</string> <string>string</string> </GsmNumbers> <BeginTime>string</BeginTime> <EndTime>string</EndTime> </SendBulkSms> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendBulkSmsResponse xmlns="http://ws.euromsg.com/postsms"> <SendBulkSmsResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </SendBulkSmsResult> </SendBulkSmsResponse> </soap12:Body> </soap12:Envelope>
If the request was successful, the CODE parameter will return 00 as a response. In addition to that, regarding the sent SMS messages PACKET ID value is returned.
Error Parameters
Code | Error Message | Description |
---|---|---|
9998 | No session. Please try re-logon. | No active sessions found. Try login again. |
99 | Not a valid orginator! | The SMS sender name is not defined in your account. |
SendPersonalSmsWithTypeAndKeyID
<SendPersonalSmsWithTypeAndKeyID> |
---|
Allows you to send a single SMS with Type and KeyID. |
Parameters
Parameter | Value | |
---|---|---|
ServiceTicket | ServiceTicket obtained through Login | MANDATORY |
Originator | SMS Sender's Name | MANDATORY |
NumberMessagePair | GSM Number and Text Message | MANDATORY |
Key | GSM Number | MANDATORY |
Value | Message Text | MANDATORY |
KeyIDs | KEY_ID information of the GSM numbers to send SMS messages to | MANDATORY |
PostType | Type of the SMS message to send | MANDATORY |
BeginTime | Time to start sending the message | MANDATORY |
EndTime | Time to end sending the message | MANDATORY |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendPersonalSmsWithTypeAndKeyID xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <Originator>string</Originator> <NumberMessagePair> <EmKeyValue> <Key>string</Key> <Value>string</Value> </EmKeyValue> <EmKeyValue> <Key>string</Key> <Value>string</Value> </EmKeyValue> </NumberMessagePair> <KeyIDs> <string>string</string> <string>string</string> </KeyIDs> <PostTypes> <string>string</string> <string>string</string> </PostTypes> <BeginTime>string</BeginTime> <EndTime>string</EndTime> </SendPersonalSmsWithTypeAndKeyID> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendPersonalSmsWithTypeAndKeyIDResponse xmlns="http://ws.euromsg.com/postsms"> <SendPersonalSmsWithTypeAndKeyIDResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </SendPersonalSmsWithTypeAndKeyIDResult> </SendPersonalSmsWithTypeAndKeyIDResponse> </soap12:Body> </soap12:Envelope>
If the request was successful, the CODE parameter will return 00 as a response.
PostType parameter is used to group the sent SMS messages when reporting. This is not a predefined parameter. For example for password reminder SMS messages, Verification
value can be used as a PostType parameter.
This service allows you to send informative emails only based on user's actions like account activation, password reset, order confirmation. Advertising/promotional content are excluded. Please contact RMC Technical Client Support Team to obtain more information about sending transactional emails with promotional content.
Error Parameters
Code | Error Message | Description |
---|---|---|
9998 | No session. Please try re-logon. | No active sessions found. Try login again. |
99 | Not a valid orginator! | The SMS sender name is not defined in your account. |
SendBulkSmsWithTypeAndKeyID
<SendBulkSmsWithTypeAndKeyID> |
---|
Allows you to send SMS messages to multiple GSM numbers. |
Parameters
Parameter | Value | |
---|---|---|
ServiceTicket | ServiceTicket obtained through Login | MANDATORY |
Originator | SMS Sender's Name | MANDATORY |
Message | GSM Number and Text Message | MANDATORY |
GsmNumbers | GSM Numbers to send SMS to | MANDATORY |
KeyIDs | KEY_ID information of the GSM numbers to send SMS messages to | MANDATORY |
PostType | Type of the SMS message to send | MANDATORY |
BeginTime | Time to start sending the message | MANDATORY |
EndTime | Time to end sending the message | MANDATORY |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendBulkSmsWithTypeAndKeyID xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <Originator>string</Originator> <Message>string</Message> <GsmNumbers> <string>string</string> <string>string</string> </GsmNumbers> <KeyIDs> <string>string</string> <string>string</string> </KeyIDs> <PostType>string</PostType> <BeginTime>string</BeginTime> <EndTime>string</EndTime> </SendBulkSmsWithTypeAndKeyID> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SendBulkSmsWithTypeAndKeyIDResponse xmlns="http://ws.euromsg.com/postsms"> <SendBulkSmsWithTypeAndKeyIDResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </SendBulkSmsWithTypeAndKeyIDResult> </SendBulkSmsWithTypeAndKeyIDResponse> </soap12:Body> </soap12:Envelope>
If the request was successful, the CODE parameter will return 00 as a response.
PostType parameter is used to group the sent SMS messages when reporting. This is not a predefined parameter. For example for password reminder SMS messages, Verification
value can be used as a PostType parameter.
This service allows you to send informative emails only based on user's actions like account activation, password reset, order confirmation. Advertising/promotional content are excluded. Please contact RMC Technical Client Support Team to obtain more information about sending transactional emails with promotional content.
Error Parameters
Code | Error Message | Description |
---|---|---|
9998 | No session. Please try re-logon. | No active sessions found. Try login again. |
99 | Not a valid orginator! | The SMS sender name is not defined in your account. |
SingleShotSms
<SingleShotSms> |
---|
Allows you to send an OTP (One Time Password) SMS. |
Parameters
Parameter | Value | |
---|---|---|
ServiceTicket | ServiceTicket obtained through Login | MANDATORY |
Originator | SMS Sender's Name | MANDATORY |
NumberMessagePair | GSM Number and Text Message | MANDATORY |
Key | GSM Number | MANDATORY |
Value | Text Message | MANDATORY |
BeginTime | Time to start sending the message | MANDATORY |
EndTime | Time to end sending the message | MANDATORY |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SingleShotSms xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <Originator>string</Originator> <NumberMessagePair> <EmKeyValue> <Key>string</Key> <Value>string</Value> </EmKeyValue> <EmKeyValue> <Key>string</Key> <Value>string</Value> </EmKeyValue> </NumberMessagePair> <BeginTime>string</BeginTime> </SingleShotSms> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SingleShotSmsResponse xmlns="http://ws.euromsg.com/postsms"> <SingleShotSmsResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </SingleShotSmsResult> </SingleShotSmsResponse> </soap12:Body> </soap12:Envelope>
If the request was successful, the CODE parameter will return 00 as a response.
You must have an OTP user to be able to send Single Shot SMS. The messages sent by this service are not filtered by the advertisement filters applied by the GSM operators. And if the phone is in the coverage area, the messages are delivered within maximum 3 minutes.
ReportSmsWithPacketID
<ReportSmsWithPacketId> |
---|
Queries the status of a specific SMS message sent. |
Parameters
Parameter | Value |
---|---|
ServiceTicket | ServiceTicket obtained through Login |
PacketId | PacketID value returned from the Service after sending the SMS |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ReportSmsWithPacketId xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <PacketId>string</PacketId> </ReportSmsWithPacketId> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ReportSmsWithPacketIdResponse xmlns="http://ws.euromsg.com/postsms"> <ReportSmsWithPacketIdResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </ReportSmsWithPacketIdResult> </ReportSmsWithPacketIdResponse> </soap12:Body> </soap12:Envelope>
If the request was successful, the CODE parameter will return 00 as a response.
Error Parameters
Code | Error Message | Description |
---|---|---|
9998 | No session. Please try re-logon. | No active sessions found. Try login again. |
GetSmsBulkResult
<GetSmsBulkResult> |
---|
Queries the status of bulk SMS messages between two dates. |
Parameters
Parameter | Value | |
---|---|---|
ServiceTicket | ServiceTicket obtained through Login | MANDATORY |
BeginDate | Time to start sending the message | MANDATORY |
EndDate | Time to end sending the message | MANDATORY |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <GetSmsBulkResult xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <BeginDate>string</BeginDate> <EndDate>string</EndDate> </GetSmsBulkResult> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <GetSmsBulkResultResponse xmlns="http://ws.euromsg.com/postsms"> <GetSmsBulkResultResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </GetSmsBulkResultResult> <BulkReport> <EmSmsBulkDeliveryResult> <PacketID>string</PacketID> <GsmNumber>string</GsmNumber> <DeliveryStatus>string</DeliveryStatus> <SendDate>string</SendDate> <DeliveryDate>string</DeliveryDate> <DeliveryDetail>string</DeliveryDetail> <KeyID>string</KeyID> <PostType>string</PostType> <Details> <Success>int</Success> <Error>int</Error> <Waiting>int</Waiting> <Timeout>int</Timeout> <Unfinished>int</Unfinished> </Details> </EmSmsBulkDeliveryResult> <EmSmsBulkDeliveryResult> <PacketID>string</PacketID> <GsmNumber>string</GsmNumber> <DeliveryStatus>string</DeliveryStatus> <SendDate>string</SendDate> <DeliveryDate>string</DeliveryDate> <DeliveryDetail>string</DeliveryDetail> <KeyID>string</KeyID> <PostType>string</PostType> <Details> <Success>int</Success> <Error>int</Error> <Waiting>int</Waiting> <Timeout>int</Timeout> <Unfinished>int</Unfinished> </Details> </EmSmsBulkDeliveryResult> </BulkReport> </GetSmsBulkResultResponse> </soap12:Body> </soap12:Envelope>
If the request was successful, the CODE parameter will return 00 as a response.
Error Parameters
Code | Error Message | Description |
---|---|---|
9998 | No session. Please try re-logon. | No active sessions found. Try login again. |
ReportSingleShotSms
<ReportSingleShotSms> |
---|
Enables single-shot sms reporting by Packet ID |
Parameters
Parameter | Value | |
---|---|---|
ServiceTicket | ServiceTicket obtained through Login | MANDATORY |
PacketId | PacketID value returned from the Service after sending the SMS | MANDATORY |
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ReportSingleShotSms xmlns="http://ws.euromsg.com/postsms"> <ServiceTicket>string</ServiceTicket> <PacketId>string</PacketId> </ReportSingleShotSms> </soap12:Body> </soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <ReportSingleShotSmsResponse xmlns="http://ws.euromsg.com/postsms"> <ReportSingleShotSmsResult> <PacketID>string</PacketID> <PacketStatus>string</PacketStatus> <DeliveryResults> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> <EmSmsDeliveryResult> <GsmNumber>string</GsmNumber> <DeliveryResult>string</DeliveryResult> <DeliveryDetail>string</DeliveryDetail> <DeliveryTime>string</DeliveryTime> <DeliveredMessage>string</DeliveredMessage> <PostType>string</PostType> <KeyID>string</KeyID> <SendDate>string</SendDate> </EmSmsDeliveryResult> </DeliveryResults> </ReportSingleShotSmsResult> </ReportSingleShotSmsResponse> </soap12:Body> </soap12:Envelope>
Error Parameters
Code | Error Message | Description |
---|---|---|
9998 | No session. Please try re-logon. | No active sessions found. Try login again. |