EmailingsWS


Haga clic aquí para obtener una lista completa de operaciones.

Send_SMS_Quick

Prueba

El formulario de prueba sólo está disponible para solicitudes del equipo local.

SOAP 1.1

A continuación se muestra un ejemplo de solicitud y respuesta para SOAP 1.1. Es necesario reemplazar los marcadores de posición que aparecen con valores reales.

POST /EmailingsSVC.asmx HTTP/1.1
Host: svc.emailings.es
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://svc.emailings.es/Send_SMS_Quick"

<?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>
    <Send_SMS_Quick xmlns="http://svc.emailings.es/">
      <SES_ID>int</SES_ID>
      <NEWSLETTER_ID>int</NEWSLETTER_ID>
      <MESSAGE>string</MESSAGE>
      <PHONE_NUMBERS>string</PHONE_NUMBERS>
      <PARAMETERS>string</PARAMETERS>
    </Send_SMS_Quick>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?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>
    <Send_SMS_QuickResponse xmlns="http://svc.emailings.es/">
      <Send_SMS_QuickResult>
        <BROADCAST_ID>int</BROADCAST_ID>
        <NEWSLETTER_ID>int</NEWSLETTER_ID>
        <NEWSLETTER>string</NEWSLETTER>
        <BROADCAST_TYPE_ID>int</BROADCAST_TYPE_ID>
        <USER_ID>int</USER_ID>
        <USER>string</USER>
        <INSTANTMESSAGE_ID>int</INSTANTMESSAGE_ID>
        <SPEED_SET>int</SPEED_SET>
        <SPEED_SENT>int</SPEED_SENT>
        <STATUS>int</STATUS>
        <PRIORITY>int</PRIORITY>
        <CREATION_DATE>dateTime</CREATION_DATE>
        <END_DATE>dateTime</END_DATE>
        <TOTAL>int</TOTAL>
        <PROCESSED>int</PROCESSED>
        <SENT>int</SENT>
        <FAIL>int</FAIL>
        <RETURNED>int</RETURNED>
        <EXCLUDED>int</EXCLUDED>
        <EXTRA>int</EXTRA>
        <DAT_INACTIVE>int</DAT_INACTIVE>
        <DAT_UNSUBSCRIBED>int</DAT_UNSUBSCRIBED>
        <DAT_DENSITY>int</DAT_DENSITY>
        <LANGUAGE>string</LANGUAGE>
        <DESTINATION_LIST_ID>int</DESTINATION_LIST_ID>
        <DESTINATION_LIST>string</DESTINATION_LIST>
        <DESTINATION_ADDRESS>string</DESTINATION_ADDRESS>
        <SUBJECT>string</SUBJECT>
        <FILTER_ID>int</FILTER_ID>
        <FILTER_VALUES>string</FILTER_VALUES>
        <ENVIRONMENT_ID>int</ENVIRONMENT_ID>
        <ADVERTISING>boolean</ADVERTISING>
        <CIRCUIT_ID>int</CIRCUIT_ID>
        <SENDER_USER_ID>int</SENDER_USER_ID>
      </Send_SMS_QuickResult>
    </Send_SMS_QuickResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

A continuación se muestra un ejemplo de solicitud y respuesta para SOAP 1.2. Es necesario reemplazar los marcadores de posición que aparecen con valores reales.

POST /EmailingsSVC.asmx HTTP/1.1
Host: svc.emailings.es
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?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>
    <Send_SMS_Quick xmlns="http://svc.emailings.es/">
      <SES_ID>int</SES_ID>
      <NEWSLETTER_ID>int</NEWSLETTER_ID>
      <MESSAGE>string</MESSAGE>
      <PHONE_NUMBERS>string</PHONE_NUMBERS>
      <PARAMETERS>string</PARAMETERS>
    </Send_SMS_Quick>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?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>
    <Send_SMS_QuickResponse xmlns="http://svc.emailings.es/">
      <Send_SMS_QuickResult>
        <BROADCAST_ID>int</BROADCAST_ID>
        <NEWSLETTER_ID>int</NEWSLETTER_ID>
        <NEWSLETTER>string</NEWSLETTER>
        <BROADCAST_TYPE_ID>int</BROADCAST_TYPE_ID>
        <USER_ID>int</USER_ID>
        <USER>string</USER>
        <INSTANTMESSAGE_ID>int</INSTANTMESSAGE_ID>
        <SPEED_SET>int</SPEED_SET>
        <SPEED_SENT>int</SPEED_SENT>
        <STATUS>int</STATUS>
        <PRIORITY>int</PRIORITY>
        <CREATION_DATE>dateTime</CREATION_DATE>
        <END_DATE>dateTime</END_DATE>
        <TOTAL>int</TOTAL>
        <PROCESSED>int</PROCESSED>
        <SENT>int</SENT>
        <FAIL>int</FAIL>
        <RETURNED>int</RETURNED>
        <EXCLUDED>int</EXCLUDED>
        <EXTRA>int</EXTRA>
        <DAT_INACTIVE>int</DAT_INACTIVE>
        <DAT_UNSUBSCRIBED>int</DAT_UNSUBSCRIBED>
        <DAT_DENSITY>int</DAT_DENSITY>
        <LANGUAGE>string</LANGUAGE>
        <DESTINATION_LIST_ID>int</DESTINATION_LIST_ID>
        <DESTINATION_LIST>string</DESTINATION_LIST>
        <DESTINATION_ADDRESS>string</DESTINATION_ADDRESS>
        <SUBJECT>string</SUBJECT>
        <FILTER_ID>int</FILTER_ID>
        <FILTER_VALUES>string</FILTER_VALUES>
        <ENVIRONMENT_ID>int</ENVIRONMENT_ID>
        <ADVERTISING>boolean</ADVERTISING>
        <CIRCUIT_ID>int</CIRCUIT_ID>
        <SENDER_USER_ID>int</SENDER_USER_ID>
      </Send_SMS_QuickResult>
    </Send_SMS_QuickResponse>
  </soap12:Body>
</soap12:Envelope>