Versions Compared

Key

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

...

Code Block
languagehtml/xml
titleSOAP Response ("Confirmation request" not set by import process)
linenumberstrue
<mailupMessage>
  <mailupBody>
    <ReturnCode>0</ReturnCode>
    <ImportProcess idProcess="275">
      <StartDate>30/10/2012 15.39.12</StartDate>
      <EndDate>30/10/2012 15.39.24</EndDate>
      <TotalContacts>0</TotalContacts>
      <NewMobile>0</NewMobile>
      <NewEmail>0</NewEmail>
      <OptOutMobile>0</OptOutMobile>
      <OptOutEmail>0</OptOutEmail>
      <ExistingMobile>0</ExistingMobile>
      <ExistingEmail>0</ExistingEmail>
      <StatusCode>3</StatusCode>
      <IsRunning>False</IsRunning>
      <ConfirmationEmail>False</ConfirmationEmail>
      <!-- ConfirmationSent is empty if Confirmation request was not set during import --> 
      <ConfirmationSent></ConfirmationSent>
    </ImportProcess>
  </mailupBody>
</mailupMessage>
Code Block
languagehtml/xml
titleSOAP Response ("Confirmation request" was set by import process but email is still to be sent)
<mailupMessage>
  <mailupBody>
    <ReturnCode>0</ReturnCode>
    <ImportProcess idProcess="4">
      <StartDate>14/06/2013 10.36.19</StartDate>
      <EndDate>14/06/2013 10.36.25</EndDate>
      <TotalContacts>0</TotalContacts>
      <NewMobile>1</NewMobile>
      <NewEmail>1</NewEmail>
      <OptOutMobile>0</OptOutMobile>
      <OptOutEmail>0</OptOutEmail>
      <ExistingMobile>0</ExistingMobile>
      <ExistingEmail>0</ExistingEmail>
      <StatusCode>3</StatusCode>
      <IsRunning>False</IsRunning>
      <ConfirmationEmail>True</ConfirmationEmail>
      <!-- When Confirmation request (double optin) is required the process details will contain ConfirmationEmail=true and ConfirmationSent will have a value (True or False) -->
      <!-- Please note that when you set confirm=1 (true) during import process the confirmation email is not automatically sent, it is simply enqueued. Then you will have to manually send enqueued message by selecting Email > SendStatus > Send Now on your MailUp console -->
      <!-- Value of ConfirmationSent field is False until MailUp user proceeds with manually sending the enqueued confirmation requests -->
      <ConfirmationSent>False</ConfirmationSent>
    </ImportProcess>
</mailupBody>
</mailupMessage>
Code Block
languagehtml/xml
titleSOAP Response ("Confirmation request" was set by import process and email has been sent)
<mailupMessage>
  <mailupBody>
    <ReturnCode>0</ReturnCode>
    <ImportProcess idProcess="4">
      <StartDate>14/06/2013 10.36.19</StartDate>
      <EndDate>14/06/2013 10.36.25</EndDate>
      <TotalContacts>0</TotalContacts>
      <NewMobile>1</NewMobile>
      <NewEmail>1</NewEmail>
      <OptOutMobile>0</OptOutMobile>
      <OptOutEmail>0</OptOutEmail>
      <ExistingMobile>0</ExistingMobile>
      <ExistingEmail>0</ExistingEmail>
      <StatusCode>3</StatusCode>
      <IsRunning>False</IsRunning>
      <ConfirmationEmail>True</ConfirmationEmail>
      <!-- User has manually sent enqueued confirmation messages -->
      <ConfirmationSent>True</ConfirmationSent>
    </ImportProcess>
  </mailupBody>
</mailupMessage>

...