Activate Subscriber(Email)
Activate an inactive subscriber. Only applicable to the subscriber that is deactivated either through the API or manually.
Request Example
Header
<APIKEY> - Value
Response
Success Response
{
"Result":{
"Status":"OK",
"StatusCode":"200"
}
}
Failed Response
{
"Result":{
"StatusCode":"500",
"Status":"InternalServerError",
"ErrorMessage":"Authentication Failed!"
}
}
Code Example (.NET)
ServiceReference1.AuthHeader header = new ServiceReference1.AuthHeader();
header.APIKey = "API KEY";
ServiceReference1.ServiceSoapClient service = new ServiceReference1.ServiceSoapClient();
var result = service.activateSubscriber(header, "example@gmail.com");