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.

 

MethodDescription
GetSmsBulkResult
Gets Bulk Result for transactional SMS's
Queries the status of bulk SMS messages between two dates.
ReportSingleShotSmsEnables Single Shot SMS Reporting by Packet ID.
ReportSmsWithPacketIdEnables SMS Reporting by Packet ID.
SendBulkSms
Enables Bulk SMS Sending
Allows you to send SMS message to multiple GSM numbers.
SendBulkSmsWithTypeAndKeyIDEnables Bulk SMS Sending with PostType and KeyID.
SendPersonalSms
Enables Personal SMS Sending
Allows 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.

 

 

Warning
iconfalse

Geliştiricinin her hangi bir web servis ile etkileşime geçebilmesi için, öncelikle Login metodunu kullanarak bir To interact with any Web Services, developers must first use the Login method to create a

Status
subtletrue
colourRed
title Service Ticket
 alması gerekir. Diğer web servis ve metodlarına yaratmış olduğu bu değer ile istekte bulunabilir. Developers can send requests to other Web Service and methods using this
Status
subtletrue
colourRed
title Service Ticket
.

 


SendPersonalSms SendPersonalSms 
Anchor
sendpersonalsms
sendpersonalsms

Back to Top ^

<SendPersonalSms>
Tekli bir sms gönderimi yapılmasını sağlarAllows you to send a single SMS message.
Parametreler

Parameters

 

Parametre
Parameter
Değer
Value 
ServiceTicket
Login aksiyonu ile elde edilen ServiceTicket
ServiceTicket obtained through Login

Status
colourGreen
titlemandatory

Originator
Sms gönderici ismi
SMS Sender's Name

Status
colourGreen
titlemandatory

NumberMessagePair
Sms gönderilecek gsm numarası ve mesaj metni
GSM Number and Text Message

Status
colourGreen
titlemandatory

KeyGSM
numarası
Number

Status
colourGreen
titlemandatory

Value
Mesaj metni
Message Text

Status
colourGreen
titlemandatory

BeginTime
Mesajın gönderileceği zaman
Time to start sending the message

Status
colourGreen
titlemandatory

EndTime
Gönderimin sonlanacağı zaman
Time 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>
    <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
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>
    <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
Başarılı istek durumunda If the request was successful, the
Status
subtletrue
colourRed
title<Code>
 parametresi parameter will return
Status
subtletrue
colourRed
title00
 olarak cevap döner. Buna ek olarak üyenin  as a response. In addition to that,
Status
subtletrue
colourRed
titleMemberID
 alanı döner field will also be returned as a response.
Hata Parametreleri

Error Parameters

 

CodeError Message
DetailedMessage
Description
Açıklama
9998No session. Please try re-logon.
 Login metodu çalıştırılmamış. Aktif oturum yok
No active sessions found. Try login again.
99Not a valid orginator!
 Girilen sms gönderici ismi hesabınızda tanımlı değil
The SMS sender name is not defined in your account.

 


SendBulkSms SendBulkSms 
Anchor
sendbulksms
sendbulksms

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

Parameters

 

Parametre
Parameter
Değer
Value 
ServiceTicket
Login aksiyonu ile elde edilen ServiceTicket
ServiceTicket obtained through Login

Status
colourGreen
titlemandatory

Originator
Sms gönderici ismi
SMS Sender's Name

Status
colourGreen
titlemandatory

Message
Sms mesaj metni
SMS Text Message

Status
colourGreen
titlemandatory

GsmNumbers
Gönderim yapılacak gsm numaraları
GSM Numbers to send SMS to

Status
colourGreen
titlemandatory

BeginTime
Mesajın gönderileceği zaman
Time to start sending the message

Status
colourGreen
titlemandatory

EndTime
Gönderimin sonlanacağı zaman
Time 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>
    <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
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>
    <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

Başarılı istek durumunda If the request was successful,

Status
subtletrue
colourRed
title<Code>
 parametresi 
Code
the parameter will return
Status
subtletrue
colourRed
title00
 olarak cevap döner. Buna ek olarak gönderilen smslere ilişkin  as a response. In addition to that, regarding the sent SMS messages 
Status
subtletrue
colourRed
titlePacket ID
 değeri döner value is returned.

Warning
Gsm no için beklenen format Format for GSM numbers is 
Status
subtletrue
colourRed
title532.1234567
‘dir.
Hata Parametreleri

Error Parameters

 

CodeError Message
DetailedMessageAçıklama
Description
9998No session. Please try re-logon.
 Login metodu çalıştırılmamış. Aktif oturum yok.99Not a valid orginator! Girilen sms gönderici ismi hesabınızda tanımlı değil.

 

SendPersonalSmsWithTypeAndKeyID 
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ğlar.
Parametreler

Parameters

 

Parametre
Parameter
Değer
Value 
ServiceTicket
Login aksiyonu ile elde edilen ServiceTicket
ServiceTicket obtained through Login

Status
colourGreen
titlemandatory

Originator
Sms gönderici ismi
SMS Sender's Name

Status
colourGreen
titlemandatory

NumberMessagePair
Sms gönderilecek gsm numarası ve mesaj metni
GSM Number and Text Message

Status
colourGreen
titlemandatory

KeyGSM
numarası
Number

Status
colourGreen
titlemandatory

Value
Mesaj metni
Message Text

Status
colourGreen
titlemandatory

KeyIDs
Sms gönderilecek gsm numaralarına ilişkin
KEY_ID
bilgisi
information of the GSM numbers to send SMS messages to

Status
colourGreen
titlemandatory

PostType
Gönderilecek sms’in tipi
Type of the SMS message to send

Status
colourGreen
titlemandatory

BeginTime
Mesajın gönderileceği zaman
Time to start sending the message

Status
colourGreen
titlemandatory

EndTime
Gönderimin sonlanacağı zaman
Time 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>
    <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
titleORNEK RESPONSE 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

Başarılı istek durumunda If the request was successful,

Status
subtletrue
colourRed
title<Code>
 parametresi 
Code
the parameter will return
Status
subtletrue
colourRed
title00
 olarak cevap döner 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ılabilir.

 

 

Warning
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.
Hata Parametreleri

Error Parameters

 

CodeError Message
DetailedMessageAçıklama
Description
9998No session. Please try re-logon.
 Login metodu çalıştırılmamış. Aktif oturum yok
No active sessions found. Try login again.
99Not a valid orginator!
 Girilen sms gönderici ismi hesabınızda tanımlı değil
The SMS sender name is not defined in your account.

 


SendBulkSmsWithTypeAndKeyID SendBulkSmsWithTypeAndKeyID 
Anchor
sendbulkwid
sendbulkwid

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

Parametreler

 

ParametreDeğer 
ServiceTicket
Login aksiyonu ile elde edilen ServiceTicket
ServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSms gönderici ismi

Status
colourGreen
titlemandatory

MessageGönderilecek mesaj metni

Status
colourGreen
titlemandatory

GsmNumbersGönderim yapılacak gsm numaraları

Status
colourGreen
titlemandatory

KeyIDsSms gönderilecek gsm numaralarına ilişkin KEY_ID bilgisi

Status
colourGreen
titlemandatory

PostTypeGönderilecek sms’in tipi

Status
colourGreen
titlemandatory

BeginTimeMesajın gönderileceği zaman

Status
colourGreen
titlemandatory

EndTimeGönderimin sonlanacağı zaman

Status
colourGreen
titlemandatory

Code Block
languagexml
titleORNEK REQUEST
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
titleORNEK RESPONSE
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

Başarılı istek durumunda If the request was successful, the

Status
subtletrue
colourRed
title<Code>Code
 parametresi  parameter will return
Status
subtletrue
colourRed
title00
 olarak cevap döner 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ılabilir.

 

 

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

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yokNo active sessions found. Try login again.
99Not a valid orginator! Girilen sms gönderici ismi hesabınızda tanımlı değil.The SMS sender name is not defined in your account

 


SingleShotSms 
Anchor
singleshot
singleshot

<SingleShotSms>
Bir gsm numarasına OTP(One Time Password) gönderimi yapılmasını sağlar.

Parametreler

 

ParametreDeğer 
ServiceTicket
Login aksiyonu ile elde edilen ServiceTicket
ServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSms gönderici ismi

Status
colourGreen
titlemandatory

NumberMessagePairSms gönderilecek gsm numarası ve mesaj metni

Status
colourGreen
titlemandatory

KeyGSM numarası

Status
colourGreen
titlemandatory

ValueMesaj metni

Status
colourGreen
titlemandatory

BeginTimeMesajın gönderileceği zaman

Status
colourGreen
titlemandatory

EndTimeGönderimin sonlanacağı zaman

Status
colourGreen
titlemandatory

Code Block
languagexml
titleORNEK REQUEST
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
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

Başarılı istek durumunda If the request was successful, the

Status
subtletrue
colourRed
title<Code>Code
 parametresi  parameter will return
Status
subtletrue
colourRed
title00
 olarak cevap döner as a response.

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

Back to Top ^

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

Parameters

 

Parametre
ParameterDeğer
 
ServiceTicketServiceTicket
Login aksiyonu ile elde edilen ServiceTicketZORUNLU
 obtained through Login
PacketIdSms gönderildikten sonra servisten dönen PacketID değeri
ZORUNLU
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>
    <ReportSmsWithPacketId xmlns="http://ws.euromsg.com/postsms">
      <ServiceTicket>string</ServiceTicket>
      <PacketId>string</PacketId>
    </ReportSmsWithPacketId>
  </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>
    <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

Başarılı istek durumunda If the request was successful, the

Status
subtletrue
colourRed
title<Code>Code
 parametresi  parameter will return
Status
subtletrue
colourRed
title00
 olarak cevap döner as a response.

Hata Parametreleri

Error Parameters

 

CodeError Message
DetailedMessageAçıklama
Description
9998No session. Please try re-logon.
 Login metodu çalıştırılmamış. Aktif oturum yok
No active sessions found. Try login again.

 


GetSmsBulkResult GetSmsBulkResult 
Anchor
bulkresult
bulkresult

<GetSmsBulkResult>
İki tarih aralığında gönderilen tekli smslerin durumunu sorgular.
Parametreler
Queries the status of bulk SMS messages between two dates.

Parameters

 

Parametre
Parameter
Değer
Value 
ServiceTicket
Login aksiyonu ile elde edilen ServiceTicket
ServiceTicket obtained through Login

Status
colourGreen
titlemandatory

BeginDate
Rapor başlangıç tarihi
Time to start sending the message

Status
colourGreen
titlemandatory

EndDate
SmsRapor bitiş tarihi
Time 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>
    <GetSmsBulkResult xmlns="http://ws.euromsg.com/postsms">
      <ServiceTicket>string</ServiceTicket>
      <BeginDate>string</BeginDate>
      <EndDate>string</EndDate>
    </GetSmsBulkResult>
  </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>
    <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

Başarılı istek durumunda If the request was successful, the

Status
subtletrue
colourRed
title<Code>Code
 parametresi  parameter will return
Status
subtletrue
colourRed
title00
 olarak cevap döner as a response.

Hata Parametreleri 

Error Parameters

 

CodeError Message
DetailedMessage
Description
Açıklama
9998No session. Please try re-logon.
 Login metodu çalıştırılmamış. Aktif oturum yok
No active sessions found. Try login again.