Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GetFields_st allows to retrieve the user personal data fields which have been configured in the MailUp system. This feature is useful when using applications that, in order to integrate, necessarily need to map their data structure based on MailUp personal data fields. Mapping is a one-time, preliminary operation for configuring data import to MailUp.

For new integrations with MailUp it has to be preferred to similar method MailUpSend.GetFields_st.

  • string GetFields_st(stringaccessKey)
    • accessKey: access key obtained using the Login method

...

If you have bought Marketing+ option you can fully access to all these fields and increase them up to 40, otherwise your access should be restricted to the first eleven fields.

 

Info

MailUp personal data fields are always defined in string format. As a consequence, GetFields_st method does not return the type of personal data fields

 

 

Code Block
languagehtml/xml
titleGetFields_st response (IT)
firstline1
linenumberstrue
<GetFields_st>
   <errorCode>0</errorCode>
   <errorDescription></errorDescription>
   <Fields>
      <Field Name="Email" Id="111"></Field>
      <Field Name="nome" Id="1"></Field>
      <Field Name="cognome" Id="2"></Field>
      <Field Name="azienda" Id="3"></Field>
      <Field Name="città" Id="4"></Field>
      <Field Name="provincia" Id="5"></Field>
      <Field Name="cap" Id="6"></Field>
      <Field Name="regione" Id="7"></Field>
      <Field Name="paese" Id="8"></Field>
      <Field Name="indirizzo" Id="9"></Field>
      <Field Name="fax" Id="10"></Field>
      <Field Name="telefono" Id="11"></Field>
      <Field Name="IDCliente" Id="12"></Field>
      <Field Name="IDUltimoOrdine" Id="13"></Field>
      <Field Name="DataUltimoOrdine" Id="14"></Field>
      <Field Name="TotaleUltimoOrdine" Id="15"></Field>
      <Field Name="IDProdottiUltimoOrdine" Id="16"></Field>
      <Field Name="IDCategorieUltimoOrdine" Id="17"></Field>
      <Field Name="DataUltimoOrdineSpedito" Id="18"></Field>
      <Field Name="IDUltimoOrdineSpedito" Id="19"></Field>
      <Field Name="DataCarrelloAbbandonato" Id="20"></Field>
      <Field Name="TotaleCarrelloAbbandonato" Id="21"></Field>
      <Field Name="IDCarrelloAbbandonato" Id="22"></Field>
      <Field Name="TotaleFatturato" Id="23"></Field>
      <Field Name="TotaleFatturatoUltimi12Mesi" Id="24"></Field>
      <Field Name="TotaleFatturatoUltimi30gg" Id="25"></Field>
      <Field Name="IDTuttiProdottiAcquistati" Id="26"></Field>
   </Fields>
</GetFields_st>

...