Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourGreen
titlepost
 
Anchor
topsmsws
topsmsws

Service URLpostsms.asmx

 

SMS gönderimleriniz için SMS Web servisini kullanabilir, sonuçlarını bu servis üzerinden çekebilirsiniz.Transactional Email web servisine ait aşağıda ki metodlar bulunmaktadır.

SMS Web Service Methods 

 

MethodDescription
GetSmsBulkResultQueries the status of bulk SMS messages between two dates.
ReportSingleShotSmsEnables Single Shot SMS Reporting by Packet ID.
ReportSmsWithPacketIdEnables SMS Reporting by Packet ID.
SendBulkSmsAllows you to send SMS message to multiple GSM numbers.
SendBulkSmsWithTypeAndKeyID
Enables Bulk SMS Sending with PostType
Allows you to send bulk SMS messages with Type and KeyID.
SendPersonalSmsAllows you to send a single SMS message.
SendPersonalSmsWithTypeAndKeyID
Enables Personal SMS sending with PostType
Allows you to send a single SMS message with Type and KeyID.
SingleShotSms
Enables Single Shot SMS Sending
Allows you to send an OTP (One Time Password) SMS.
SingleShotSmsWithTypeAndKeyIDEnables Single Shot SMS Sending with PostType and KeyID.

 

 

Warning
iconfalse

To interact with any Web Services, developers must first use the Login method to create a

Status
subtletrue
colourRed
title Service Ticket
. Developers can send requests to other Web Service and methods using this
Status
subtletrue
colourRed
title Service Ticket
.

 


SendPersonalSms 
Anchor
sendpersonalsms
sendpersonalsms

Back to Top ^

<SendPersonalSms>
Allows you to send a single SMS message.

Parameters

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSMS Sender's Name

Status
colourGreen
titlemandatory

NumberMessagePairGSM Number and Text Message

Status
colourGreen
titlemandatory

KeyGSM Number

Status
colourGreen
titlemandatory

ValueMessage Text

Status
colourGreen
titlemandatory

BeginTimeTime to start sending the message

Status
colourGreen
titlemandatory

EndTimeTime to end sending the message

Status
colourGreen
titlemandatory

Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Tip
If the request was successful, the
Status
subtletrue
colourRed
title<Code>
 parameter will return
Status
subtletrue
colourRed
title00
 
as a response. In addition to that,
Status
subtletrue
colourRed
titleMemberID
field will also be returned as a response.

Error Parameters

 

CodeError MessageDescription
9998No session. Please try re-logon.No active sessions found. Try login again.
99Not a valid orginator!The SMS sender name is not defined in your account.

 


SendBulkSms 
Anchor
sendbulksms
sendbulksms

<SendBulkSms>
Allows you to send SMS message to multiple GSM numbers.

Parameters

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSMS Sender's Name

Status
colourGreen
titlemandatory

MessageSMS Text Message

Status
colourGreen
titlemandatory

GsmNumbersGSM Numbers to send SMS to

Status
colourGreen
titlemandatory

BeginTimeTime to start sending the message

Status
colourGreen
titlemandatory

EndTimeTime to end sending the message

Status
colourGreen
titlemandatory

Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Tip

If the request was successful,

Status
subtletrue
colourRed
titleCode
the parameter will return
Status
subtletrue
colourRed
title00
as a response. In addition to that, regarding the sent SMS messages 
Status
subtletrue
colourRed
titlePacket ID
 value is returned.

Warning
Format for GSM numbers is 
Status
subtletrue
colourRed
title532.1234567
.

Error Parameters

 

CodeError MessageDescription
9998No session. Please try re-logon.No active sessions found. Try login again.
99Not a valid orginator!The SMS sender name is not defined in your account.

 


SendPersonalSmsWithTypeAndKeyID 
Anchor
sendpersonalsmswtype
sendpersonalsmswtype

<SendPersonalSmsWithTypeAndKeyID>
Tekli bir sms gönderimi yapılmasını sağlarAllows you to send a single SMS with Type and KeyID.

Parameters

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSMS Sender's Name

Status
colourGreen
titlemandatory

NumberMessagePairGSM Number and Text Message

Status
colourGreen
titlemandatory

KeyGSM Number

Status
colourGreen
titlemandatory

ValueMessage Text

Status
colourGreen
titlemandatory

KeyIDsKEY_ID information of the GSM numbers to send SMS messages to

Status
colourGreen
titlemandatory

PostTypeType of the SMS message to send

Status
colourGreen
titlemandatory

BeginTimeTime to start sending the message

Status
colourGreen
titlemandatory

EndTimeTime to end sending the message

Status
colourGreen
titlemandatory

Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope><?xml version="1.0" encoding="utf-8"?>
Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Tip

If the request was successful,

Status
subtletrue
colourRed
titleCode
the parameter will return
Status
subtletrue
colourRed
title00
as a response.

PostType parametresi gönderilen smsleri raporlarken gruplama yapabilmek adına kullanılır. Bu ön tanımlı bir parametre değildir. Örnek olarak doğrulama kodu smsleri için doğrulama gibi bir değer kullanılabilir
Tip

 

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.

 

 

Bu serviste yalnızca kullanıcının aldığı bir aksiyona ilişkin şifre hatırlatma, aktivasyon, sipariş bilgisi gibi reklam/tanıtım içeriği olmayan bilgilendirme e-postalarının gönderilmesine izin verebiliyoruz. Eğer reklam/tanıtım içerikli transactional e-postalar gönderecekseniz, lütfen teknik ekibimizle iletişime geçiniz
Warning
Warning

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 Support Team to obtain more information about sending transactional emails with promotional content.

Error Parameters

 

CodeError MessageDescription
9998No session. Please try re-logon.No active sessions found. Try login again.
99Not a valid orginator!The SMS sender name is not defined in your account.

 


SendBulkSmsWithTypeAndKeyID 
Anchor
sendbulkwid
sendbulkwid

<SendBulkSmsWithTypeAndKeyID>
Birden fazla gsm numarasına bilgilendirme sms’i gönderilmesini sağlar.
Parametreler
Allows you to send SMS messages to multiple GSM numbers.

Parameters

 

ParametreParameterValue 
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSMS Sender's Name

Status
colourGreen
titlemandatory

MessageGSM Number and Text Message

Status
colourGreen
titlemandatory

GsmNumbersGSM Numbers to send SMS to

Status
colourGreen
titlemandatory

KeyIDsKEY_ID information of the GSM numbers to send SMS messages to

Status
colourGreen
titlemandatory

PostTypeType of the SMS message to send

Status
colourGreen
titlemandatory

BeginTimeTime to start sending the message

Status
colourGreen
titlemandatory

EndTimeTime to end sending the message

Status
colourGreen
titlemandatory

Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Tip

If the request was successful, the

Status
subtletrue
colourRed
titleCode
parameter will return
Status
subtletrue
colourRed
title00
as a response.

Tip

PostType parametresi gönderilen smsleri raporlarken gruplama yapabilmek adına kullanılır. Bu ön tanımlı bir parametre değildir. Örnek olarak doğrulama kodu smsleri için doğrulama gibi bir değer kullanılabilirparameter 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.

 

 

Bu serviste yalnızca kullanıcının aldığı bir aksiyona ilişkin şifre hatırlatma, aktivasyon, sipariş bilgisi gibi reklam/tanıtım içeriği olmayan bilgilendirme e-postalarının gönderilmesine izin verebiliyoruz. Eğer reklam/tanıtım içerikli transactional e-postalar gönderecekseniz, lütfen teknik ekibimizle iletişime geçiniz
Warning
Warning

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 Support Team to obtain more information about sending transactional emails with promotional content.

Error Parameters

 

CodeError MessageDescription
9998No session. Please try re-logon.No active sessions found. Try login again.
99Not a valid orginator!The SMS sender name is not defined in your account.

 


SingleShotSms SingleShotSms 
Anchor
singleshot
singleshot

<SingleShotSms>
Bir gsm numarasına Allows you to send an OTP (One Time Password) gönderimi yapılmasını sağlarSMS.
Parametreler

Parameters

 

ParametreParameterDeğerValue 
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSms gönderici ismiSMS Sender's Name

Status
colourGreen
titlemandatory

NumberMessagePairSms gönderilecek gsm numarası ve mesaj metniGSM Number and Text Message

Status
colourGreen
titlemandatory

KeyGSM numarasıNumber

Status
colourGreen
titlemandatory

ValueMesaj metniText Message

Status
colourGreen
titlemandatory

BeginTimeMesajın gönderileceği zamanTime to start sending the message

Status
colourGreen
titlemandatory

EndTimeGönderimin sonlanacağı zamanTime to end sending the message

Status
colourGreen
titlemandatory

Code Block
languagexml
titleORNEK REQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleORNEK RESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Tip

If the request was successful, the

Status
subtletrue
colourRed
titleCode
parameter will return
Status
subtletrue
colourRed
title00
as a response.

TipSingleshot sms gönderebilmek için, bir OTP sms kullanıcınızın olması gerekir. Bu servis ile yapılan gönderimler gsm operatörlerinin uyguladığı reklam filtrelerine takılmaz. Ve telefonun kapsama alanında olması durumunda en geç 3 dakika gibi bir süre içinde alıcıya ulaşır

.

Tip

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 
Anchor
reportsmsid
reportsmsid

Back to Top ^

<ReportSmsWithPacketId>
Gönderilen bir tekli sms’in durumunu sorgulamayı sağlarQueries the status of a specific SMS message sent.

Parameters

 

ParameterDeğerValue
ServiceTicketServiceTicket obtained through Login
PacketIdSms gönderildikten sonra servisten dönen PacketID değeriPacketID value returned from the Service after sending the SMS
Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <ReportSmsWithPacketId xmlns="http://ws.euromsg.com/postsms">
      <ServiceTicket>string</ServiceTicket>
      <PacketId>string</PacketId>
    </ReportSmsWithPacketId>
  </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
  </soap:Body>
</soap:Envelope>
Tip

If the request was successful, the

Status
subtletrue
colourRed
titleCode
parameter will return
Status
subtletrue
colourRed
title00
as a response.

Error Parameters

 

CodeError MessageDescription
9998No session. Please try re-logon.No active sessions found. Try login again.

 


GetSmsBulkResult 
Anchor
bulkresult
bulkresult

<GetSmsBulkResult>
Queries the status of bulk SMS messages between two dates.

Parameters

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

BeginDateTime to start sending the message

Status
colourGreen
titlemandatory

EndDateTime to end sending the message

Status
colourGreen
titlemandatory

Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetSmsBulkResult xmlns="http://ws.euromsg.com/postsms">
      <ServiceTicket>string</ServiceTicket>
      <BeginDate>string</BeginDate>
      <EndDate>string</EndDate>
    </GetSmsBulkResult>
  </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap: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>
        </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>
        </EmSmsBulkDeliveryResult>
      </BulkReport>
    </GetSmsBulkResultResponse>
  </soap:Body>
</soap:Envelope>
Tip

If the request was successful, the

Status
subtletrue
colourRed
titleCode
parameter will return
Status
subtletrue
colourRed
title00
as a response.

Error Parameters

 

CodeError MessageDescription
9998No session. Please try re-logon.No active sessions found. Try login again.