Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Method parameters

GetListIdentity allows to retrieve the identifiers of a list in MailUp, starting from an external ID. When integrating with Microsoft Dynamics CRM, the identifier is ORGUNIQUENAME.

  • string GetListIdentity(string accessKey, string autoId)
  • accessKey: access key obtained using the Login method
  • autoId: identifier which allows MailUp to know if a list was created in an automated context or not. In the Microsoft Dynamics CRM it corresponds to the ORGUNIQUENAME.

Sample GetListIdentity response

The method returns a string in XML format containing the list identifier and the GUID of the List created in the MailUp console.

<GetList>

       <Lists>

<List Guid="Guid" Id ="X" Name="nome"/>

       </Lists>

</GetList>


The XML string will have the following features:

  • A root node <GetListIdentity>
  • A node <Lists>, contained in the root node.
  • A node <List> with the attributes GuidId e Name. These contain respectively the GUID of the list, the ID of the list and the name of the list provided at entrance, 


In case of errors during the creation of the list, the XML will have the following structure:

<GetListIdentity>

<Error>"Messaggio di errore"</Error>

</GetListIdentity>


The XML string will have the following features:

  • A root node <GetListIdentity>.
  • A node <Error>, contained in the root node, returning the error message.

 

  • No labels