Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
StatuscolourGreentitlepost  AnchortopsmswstopsmswsService 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.

 

MethodDescriptionGetSmsBulkResultGets Bulk Result for transactional SMS's between two dates.ReportSingleShotSmsEnables Single Shot SMS Reporting by Packet ID.ReportSmsWithPacketIdEnables SMS Reporting by Packet ID.SendBulkSmsEnables Bulk SMS Sending.SendBulkSmsWithTypeAndKeyIDEnables Bulk SMS Sending with PostType and KeyID.SendPersonalSmsEnables Personal SMS Sending.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  StatussubtletruecolourRedtitle Service Ticket alması gerekir. Diğer web servis ve metodlarına yaratmış olduğu bu değer ile istekte bulunabilir.

 

SendPersonalSms  Anchorsendpersonalsmssendpersonalsms

Back to Top ^

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

Parametreler

 

ParametreDeğer ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

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
titlepost
 
Anchor
topsmsws
topsmsws


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

GetSmsBulkResult

Queries the status of bulk SMS messages between two dates.

ReportSingleShotSms

Enables Single Shot SMS Reporting by Packet ID.

ReportSmsWithPacketId

Enables SMS Reporting by Packet ID.

SendBulkSms

Allows you to send SMS message to multiple GSM numbers.

SendBulkSmsWithTypeAndKeyID

Allows you to send bulk SMS messages with Type and KeyID.

SendPersonalSms

Allows you to send a single SMS message.

SendPersonalSmsWithTypeAndKeyID

Allows you to send a single SMS message with Type and KeyID.

SingleShotSms

Allows you to send an OTP (One Time Password) SMS.

SingleShotSmsWithTypeAndKeyID

Enables Single Shot SMS Sending with PostType and KeyID.

SendPersonalSmsToAMember

Enables personal-sms sending to an existing member.




Warning

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

ValueMesaj metni
OriginatorSMS Sender's Name

Status
colourGreen
titlemandatory

BeginTimeMesajın gönderileceği zaman
NumberMessagePairGSM Number and Text Message

Status
colourGreen
titlemandatory

EndTimeGönderimin sonlanacağı zaman
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
titleORNEK REQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<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>
  </soapsoap12:Body>
</soapsoap12:Envelope>


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

Hata Parametreleri

 
field will also be returned as a response.

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.

 

SendBulkSms 
The SMS sender name is not defined in your account.



SendBulkSms 
Anchor
sendbulksms
sendbulksms

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

Parametreler

 

ParametreDeğer ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket
Allows you to send SMS message to multiple GSM numbers.

Parameters


ParameterValue
ServiceTicketServiceTicket 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

Note

Maximum 5 gsm no should be added.


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<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<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>
  </soapsoap12:Body>
</soapsoap12:Envelope>


Code Block
languagexml
titleORNEK RESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<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>
  </soapsoap12:Body>
</soapsoap12: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. 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.
No active sessions found. Try login again.
99Not a valid orginator!
 Girilen sms gönderici ismi hesabınızda tanımlı değil.

 

SendPersonalSmsWithTypeAndKeyID 
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

 

ParametreDeğer ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket
Allows you to send a single SMS with Type and KeyID.

Parameters


ParameterValue
ServiceTicketServiceTicket 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 Status
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<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<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>
  </soapsoap12:Body>
</soap:Envelope><soap12:Envelope>


Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<soap
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<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>
  </soapsoap12:Body>
</soapsoap12: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

 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.



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

Error Parameters


CodeError MessageDescription
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.

 

SendBulkSmsWithTypeAndKeyID 
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

 

ParametreDeğer ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket
Allows you to send SMS messages to multiple GSM numbers.

Parameters


ParameterValue
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

Originator
Sms gönderici ismi
SMS Sender's Name

Status
colourGreen
titlemandatory

Message
Gönderilecek mesaj metni
GSM Number and Text Message

Status
colourGreen
titlemandatory

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

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<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<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>
  </soapsoap12:Body>
</soapsoap12:Envelope>


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


 

CodeMessageDetailedMessageAçıklama
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

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.



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

Error Parameters


CodeError MessageDescription
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.

 

SingleShotSms 
The SMS sender name is not defined in your account.



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


 
Parameter
Parametre
Value
Değer

ServiceTicket
 
ServiceTicket
Login aksiyonu ile elde edilen 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
Text Message

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<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/soap2003/envelope05/soap-envelope">
  <soap<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>
  </soapsoap12:Body>
</soapsoap12:Envelope>


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

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

Parametreler

 

ParametreDeğer ServiceTicketLogin aksiyonu ile elde edilen ServiceTicketZORUNLUPacketIdSms gönderildikten sonra servisten dönen PacketID değeriZORUNLU
Queries the status of a specific SMS message sent.

Parameters


ParameterValue
ServiceTicketServiceTicket obtained through Login
PacketIdPacketID value returned from the Service after sending the SMS


Code Block
languagexml
titleORNEK REQUEST EXAMPLE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<soap12:Body>
    <ReportSmsWithPacketId xmlns="http://ws.euromsg.com/postsms">
      <ServiceTicket>string</ServiceTicket>
      <PacketId>string</PacketId>
    </ReportSmsWithPacketId>
  </soapsoap12:Body>
</soapsoap12:Envelope>


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

 

GetSmsBulkResult 
No active sessions found. Try login again.



GetSmsBulkResult 
Anchor
bulkresult
bulkresult

<GetSmsBulkResult>
İki tarih aralığında gönderilen tekli smslerin durumunu sorgular.

Parametreler

 

ParametreDeğer ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket
Queries the status of bulk SMS messages between two dates.

Parameters


ParameterValue
ServiceTicketServiceTicket 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<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapsoap12="http://schemaswww.xmlsoapw3.org/2003/05/soap/-envelope/">
  <soap<soap12:Body>
    <GetSmsBulkResult xmlns="http://ws.euromsg.com/postsms">
      <ServiceTicket>string</ServiceTicket>
      <BeginDate>string</BeginDate>
      <EndDate>string</EndDate>
    </GetSmsBulkResult>
      </GetSmsBulkResult>
  </soap:Body>
</soap:Envelope></soap12:Body>
</soap12:Envelope>


Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?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>


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.




ReportSingleShotSms 
Anchor
ReportSingleShotSms
ReportSingleShotSms

Back to Top ^

<ReportSingleShotSms>
Enables single-shot sms reporting by Packet ID

Parameters


ParameterValue
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

PacketIdPacketID value returned from the Service after sending the SMS

Status
colourGreen
titlemandatory


Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?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>


Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?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>


Tip
If the request was successful, the
Status
subtletrue
colourRed
title<Code>
 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.



SingleShotSmsWithTypeAndKeyID 
Anchor
SingleShotSmsWithTypeAndKeyID
SingleShotSmsWithTypeAndKeyID

<SingleShotSmsWithTypeAndKeyID>
Allows 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

GsmNumberGSM Number

Status
colourGreen
titlemandatory

MessageMessage 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


Code Block
languagexml
titleREQUEST EXAMPLE
linenumberstrue
<?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>
    <SingleShotSmsWithTypeAndKeyID xmlns="http://ws.euromsg.com/postsms">
      <ServiceTicket>string</ServiceTicket>
      <Originator>string</Originator>
      <GsmNumber>string</GsmNumber>
      <Message>string</Message>
      <KeyID>string</KeyID>
      <PostType>string</PostType>
      <BeginTime>string</BeginTime>
    </SingleShotSmsWithTypeAndKeyID>
  </soap12:Body>
</soap12:Envelope>


Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?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>
    <SingleShotSmsWithTypeAndKeyIDResponse xmlns="http://ws.euromsg.com/postsms">
      <SingleShotSmsWithTypeAndKeyIDResult>
        <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>
      </SingleShotSmsWithTypeAndKeyIDResult>
    </SingleShotSmsWithTypeAndKeyIDResponse>
  </soap12:Body>
</soap12:Envelope>


Tip

If the request was successful, the

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


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.



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




SendPersonalSmsToAMember 
Anchor
persmemb
persmemb

<SendPersonalSmsToAMember>
Enables personal-sms sending to an existing member.

Parameters


ParameterValue
ServiceTicketServiceTicket obtained through Login

Status
colourGreen
titlemandatory

OriginatorSMS Sender's Name

Status
colourGreen
titlemandatory

MessageText message

Status
colourGreen
titlemandatory

KeyAccount reference information

Status
colourGreen
titlemandatory

ValueThe value of the field name specified in the Key field

Status
colourGreen
titlemandatory

BeginTimeTime to start sending the message

Status
colourGreen
titlemandatory

EndTimeTime to end sending the message

Status
colourGreen
titlemandatory


Code Block
languagexml
title

...

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

...

<SendPersonalSmsToAMember xmlns="http://ws.euromsg.com/postsms">
      

...

<ServiceTicket>string</ServiceTicket>
      

...

<Originator>string</Originator>
      

...

<Key>string</Key>
      

...

<Value>string</Value>
      

...

<Message>string</

...

Message>
      <BeginTime>string</BeginTime>
   

...

   <EndTime>string</EndTime>
    </SendPersonalSmsToAMember>
  

...

</soap12:Body>
</soap12:Envelope>


Code Block
languagexml
titleRESPONSE EXAMPLE
linenumberstrue
<?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>
    

...

<SendPersonalSmsToAMemberResponse xmlns="http://ws.euromsg.com/postsms">
      <SendPersonalSmsToAMemberResult>
     

...

   

...

<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>
      </

...

SendPersonalSmsToAMemberResult>
    </

...

SendPersonalSmsToAMemberResponse>
  </

...

soap12:Body>
</

...

soap12:Envelope>


Tip

...

If the request was successful, the

Status
subtletrue
colourRed
title

...

Code

...

parameter will return

Status
subtletrue
colourRed
title00

...

as a response.

Hata Parametreleri 


Error Parameters


CodeError Message

...

Description

...

 

 

 

...

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.




Parent Topic: SOAP Web Service