...
...
...
Method parameters
Updates a list
- string UpdateList(string accessKey, int listID, bool copyTemplate, Option[] options)
- accessKey:
...
- access key obtained using the Login method
- listID: ID della lista da modificare
- options: array con le opzioni da modificare:
- owneremail:
- sender email address
- bouncedemail:
- address for error messages
- description:
- list description
- format:
- list format ("html", "text")
- charset: text charset
- (see a list of supported charsets in the appendix A)
- public: flag
- indicating if the list is visible in the frontend
- tracking: flag
- enabling the tracking of opens
- nl_sendername:
- emali sender name
- sms_sendername:
- sms sender name
- optout_type:
- optout type (1:
- Single with confirmation, 2:
- Single, 3:
- Double)
- sendemailoptout: flag
- indicating if an email is sent to unsubscribers
- notifyemail:
- frontendform: flag che permette di visualizzare le form di iscrizioni nel frontend
- disclaimer: intestazione aggiunta ai messaggi della lista
- headerxabuse: intestazione aggiunta ai messaggi della lista
- kbmax: dimensione del messaggio oltre la quale viene generato un warning
- replyto: indirizzo di posta a cui verranno inviate eventuali risposte alla newsletter
- displayas: nome che verrà visualizzato nel campo "A:" nelle newsletter ricevute (campo1,campo2 etc.)
- headerlistunsubscriber: intestazione aggiunta ai messaggi della lista
- multipart_text: flag per generare in automatico la versione del messaggio solo testo in fase di invio
- conversionlab_trackcode: codice per il tracciamento con
- notification email sent to the administrator in case of unsubscriptions
- frontendform: flag that allows to view the subscription forms in the frontend
- disclaimer: heading added to the messages in the list
- headerxabuse: heading added to the messages in the list
- kbmax: message size beyond which a warning is generated
- replyto: email address for replies to the newsletter
- displayas: name displayed in the "To:" field of the incoming newsletters (field1,field2etc.)
- headerlistunsubscriber: heading added to the messages in the list
- multipart_text: flag to automatically generate a text version of the message at sending stage
- conversionlab_trackcode: code for tracking via conversionlab
- default_prefix:
- default international prefix for mobile numbers
- multi_optout_list:
- detail of the lists which will be viewed by the user in case of multiple optout (e.g. 1,2,3 etc.)
- subscribedemail: flag
- sendconfirmsms: flag per inviare un sms agli utenti appena iscritti
- senderfaxname: nome mittente fax
- senderfax: numero mittente fax
- senderfirstname: nome mittente posta cartacea
- senderlastname: cognome mittente posta cartacea
- sendercompanyname: azienda mittente posta cartacea
- senderaddress: indirizzo mittente posta cartacea
- senderpostalcode: codice postale mittente posta cartacea
- sendercity: città mittente posta cartacea
- senderprovince: provincia mittente posta cartacea
- senderstate: stato mittente posta cartacea
...
- to send an email to new subscribers
- sendconfirmsms: flag to send a text message to new subscribers
- senderfaxname: fax sender name
- senderfax: fax sender number
- senderfirstname: regular mail sender name
- senderlastname: regular mail sender surname
- sendercompanyname: regular mail sender company
- senderaddress: regular mail sender address
- senderpostalcode: regular mail sender zipcode
- sendercity: regular mail sender city
- senderprovince: regular mail sender province
- senderstate: regular mail sender state
Sample UpdateList response
Code Block | ||||
---|---|---|---|---|
| ||||
<UpdateListResult>
<errorCode>0</errorCode>
<errorDescription></errorDescription>
<list>
<listID>1</listID>
<listName>Demo</listName>
<hash></hash>
<name></name>
<description></description>
<format></format>
<charset></charset>
<public></public>
<tracking></tracking>
<unsubscribe></unsubscribe>
<owneremail></owneremail>
<bounceemail></bounceemail>
<header></header>
<footer></footer>
<footercustom></footercustom>
<footermailup></footermailup>
<nl_sendername></nl_sendername>
<sms_sendername></sms_sendername>
<optout_type></optout_type>
<sendemailoptout></sendemailoptout>
<notifyemail></notifyemail>
<frontendform></frontendform>
<disclaimer></disclaimer>
<headerxabuse></headerxabuse>
<kbmax></kbmax>
<headerreplyto></headerreplyto>
<displayas></displayas>
<headerlistunsubscribe></headerlistunsubscribe>
<smtp_confirm></smtp_confirm>
<multipart_text></multipart_text>
<conversionlab_trackcode></conversionlab_trackcode>
<default_prefix></default_prefix>
<multi_optout_list></multi_optout_list>
<subscribedemail></subscribedemail>
<sendconfirmsms></sendconfirmsms>
<senderfaxname></senderfaxname>
<senderfax></senderfax>
<senderfirstname></senderfirstname>
<senderlastname></senderlastname>
<sendercompanyname></sendercompanyname>
<senderaddress></senderaddress>
<senderpostalcode></senderpostalcode>
<sendercity></sendercity>
<senderprovince></senderprovince>
<senderstate></senderstate>
</list>
</UpdateListResult> |