Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Permette di eseguire, con un'unica chiamata, la creazione e l'invio di un messaggio SMS
 

Creates and sends a text message (SMS) via a unique call

Method parameters

  • string SendSMSFast(string accessKey, int listID, string subject, string text, Option[] options)
    • accessKey:

...

    •  access key obtained using the LoginFromId method
    • listID: list identifier. Lists and corresponding IDs can be obtained calling the GetLists Method
    • subject: subject of the text message
    • text: body of the text message
    • options: an array of key/value pairs for options setting. All the options listed for the WS_MailUpSend.CreateSMS and WS_MailUpSend.SendSMS are available for this method as well.

If error code=0, the message will contain the ID of the sending

SOAP Examples

Code Block
languagehtml/xml
titleSOAP Response
firstline1
linenumberstrue
<SendSMSFastResult>
  <errorCode>0</errorCode>
  <errorDescription>0</errorDescription>
  <listID>1</listID>
  <smsID>1</smsID>
  <deliveryID>125</deliveryID>
  <deliveryStatus>Sending in progress</deliveryStatus>
</SendSMSFastResult>