inwise - email marketing and newsletter software company
 
inwise Top Background
Arrow on Service

Recipients Cancel Unsubscribe
Footer

Recipients Cancel Unsubscribe

Operation Name: operation Name
Description: description

All actions require a valid user name and password using authenticaion header.
Show a raw xml example including the authentication header.

Service url:https://api.inwise.com/InwiseWebServices.asmx

Adding a reference to inwise web services

User Name:
Password:  
Email: 
The service enables you remove a recipient from the "Unsubscribed" list.

Parameters:

  • String email
    The recipient's email.

Java Code:

//get a reference to the service InwiseWebServices ws = new InwiseWebServices();
InwiseWebServicesSoap inwiseWebServicesSoap = ws.getInwiseWebServicesSoap();

//fill the security header
HeaderHandler hh = new HeaderHandler("myusername", "myPassword");
hh.setHeader(inwiseWebServicesSoap);


//the recipient's email
String email = "email@company.com";

//call the operation
boolean result = inwiseWebServicesSoap.recipientsCancelUnsubscribe(email);
if (result == true){
   //success
}

C# Code:

 //get a reference to the service

         InwiseWebServices.InwiseWebServices ws = new InwiseWebServices.InwiseWebServices();

         //fill the security header

         InwiseWebServices.SecHeader header = new InwiseWebServices.SecHeader();

         header.username = "username";

         header.pass = "myPassword";

         ws.SecHeaderValue = header;//set credentials

 

         //the email to remove from unsubscribed

         string email = "email@company.com";

         //call the operation

         bool result = ws.Recipients_CancelUnsubscribe(email);

         if (result == true)

         {

             //success

         }

VB Code:

 Dim ws As InwiseWebServices.InwiseWebServices = New InwiseWebServices.InwiseWebServices()

 

         'fill the security header

         Dim header As InwiseWebServices.SecHeader = New InwiseWebServices.SecHeader()

         header.username = "username"

         header.pass = "myPassword"

         ws.SecHeaderValue = header 'set credentials

 

         'the email to remove from unsubscribed

         Dim email As String = "email@company.com"

         Dim result As Boolean = ws.Recipients_CancelUnsubscribe(email)

 

         If result = True Then

 

             'success

 

         End If




Home  |  About us  |  Products  |  Service  |  Partners  |  Forum  |  Email Marketing Terms  |  Support  |  Contact us
Terms & Conditions  |  Privacy Policy  |  Anti Spam Policy  |  Site Map
© 2008 inwise LTD. All rights reserved.