Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 16 Next »

POST 

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.

 

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.
SendBulkSmsWithTypeAndKeyIDEnables Bulk SMS Sending with PostType and KeyID.
SendPersonalSmsAllows you to send a single SMS message.
SendPersonalSmsWithTypeAndKeyIDEnables Personal SMS sending with PostType and KeyID.
SingleShotSmsEnables Single Shot SMS Sending.
SingleShotSmsWithTypeAndKeyIDEnables Single Shot SMS Sending with PostType and KeyID.

 

 

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 

Back to Top ^

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

Parameters

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

MANDATORY

OriginatorSMS Sender's Name

MANDATORY

NumberMessagePairGSM Number and Text Message

MANDATORY

KeyGSM Number

MANDATORY

ValueMessage Text

MANDATORY

BeginTimeTime to start sending the message

MANDATORY

EndTimeTime to end sending the message

MANDATORY

REQUEST EXAMPLE
<?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>
RESPONSE EXAMPLE
<?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>
If the request was successful, the <CODE> parameter will return 00 as a response. In addition to that, MEMBERID 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 

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

Parameters

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

MANDATORY

OriginatorSMS Sender's Name

MANDATORY

MessageSMS Text Message

MANDATORY

GsmNumbersGSM Numbers to send SMS to

MANDATORY

BeginTimeTime to start sending the message

MANDATORY

EndTimeTime to end sending the message

MANDATORY

REQUEST EXAMPLE
<?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>
RESPONSE EXAMPLE
<?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>

If the request was successful, CODE the parameter will return 00 as a response. In addition to that, regarding the sent SMS messages PACKET ID value is returned.

Format for GSM numbers is 532.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 

<SendPersonalSmsWithTypeAndKeyID>
Tekli bir sms gönderimi yapılmasını sağlar.

Parameters

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

MANDATORY

OriginatorSMS Sender's Name

MANDATORY

NumberMessagePairGSM Number and Text Message

MANDATORY

KeyGSM Number

MANDATORY

ValueMessage Text

MANDATORY

KeyIDsKEY_ID information of the GSM numbers to send SMS messages to

MANDATORY

PostTypeType of the SMS message to send

MANDATORY

BeginTimeTime to start sending the message

MANDATORY

EndTimeTime to end sending the message

MANDATORY

REQUEST EXAMPLE
<?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"?>
RESPONSE EXAMPLE
<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>

If the request was successful, CODE the parameter will return 00 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.

 

 

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.

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 

<SendBulkSmsWithTypeAndKeyID>
Birden fazla gsm numarasına bilgilendirme sms’i gönderilmesini sağlar.

Parametreler

 

ParametreValue 
ServiceTicketServiceTicket obtained through Login

MANDATORY

OriginatorSMS Sender's Name

MANDATORY

MessageGSM Number and Text Message

MANDATORY

GsmNumbersGSM Numbers to send SMS to

MANDATORY

KeyIDsKEY_ID information of the GSM numbers to send SMS messages to

MANDATORY

PostTypeType of the SMS message to send

MANDATORY

BeginTimeTime to start sending the message

MANDATORY

EndTimeTime to end sending the message

MANDATORY

REQUEST EXAMPLE
<?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>
RESPONSE EXAMPLE
<?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>

If the request was successful, the CODE parameter will return 00 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.

 

 

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.

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>
Bir gsm numarasına OTP(One Time Password) gönderimi yapılmasını sağlar.

Parametreler

 

ParametreDeğer 
ServiceTicketServiceTicket obtained through Login

MANDATORY

OriginatorSms gönderici ismi

MANDATORY

NumberMessagePairSms gönderilecek gsm numarası ve mesaj metni

MANDATORY

KeyGSM numarası

MANDATORY

ValueMesaj metni

MANDATORY

BeginTimeMesajın gönderileceği zaman

MANDATORY

EndTimeGönderimin sonlanacağı zaman

MANDATORY

ORNEK REQUEST
<?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>
ORNEK RESPONSE
<?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>

If the request was successful, the CODE parameter will return 00 as a response.

Singleshot 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.

 


ReportSmsWithPacketID 

Back to Top ^

<ReportSmsWithPacketId>
Gönderilen bir tekli sms’in durumunu sorgulamayı sağlar.

Parameters

 

ParameterDeğer
ServiceTicketServiceTicket obtained through Login
PacketIdSms gönderildikten sonra servisten dönen PacketID değeri
REQUEST EXAMPLE
<?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>
RESPONSE EXAMPLE
<?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>

If the request was successful, the CODE parameter will return 00 as a response.

Error Parameters

 

CodeError MessageDescription
9998No 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

 

ParameterValue 
ServiceTicketServiceTicket obtained through Login

MANDATORY

BeginDateTime to start sending the message

MANDATORY

EndDateTime to end sending the message

MANDATORY

REQUEST EXAMPLE
<?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>
RESPONSE EXAMPLE
<?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>

If the request was successful, the CODE parameter will return 00 as a response.

Error Parameters

 

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

 

 

 

 

  • No labels