REST Email Marketing API DocumentationCONFIRMATIONS — DELETERemove a confirmation request, making the recipient eligible to be sent emails. HTTP VERBDELETE URL/API/Rest/Confirmations ARGUMENTS
emailAddress Required permissionCreateEditMember ERRORS
No Permission RETURNSSuccess EXAMPLEDelete a confirmation. |
string url = "http://example.com/api/rest/Confirmations/?accountName=acme&login=ApiUser&emailAddress=joe@example.com"; try { System.Net.HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Headers.Add("Password", "sdjks8fsdysgd7"); request.Method = "DELETE"; request.ContentLength = 0; using (System.Net.WebResponse response = request.GetResponse()) using (Stream responseStream = response.GetResponseStream()) using (StreamReader reader = new StreamReader(responseStream, Encoding.UTF8)) System.Console.WriteLine(reader.ReadToEnd()); } catch (System.Net.WebException ex) { System.Diagnostics.Debug.Fail(ex.Message); }
# encoding: utf-8 require 'rest-client' require 'json' url = 'http://www.example.com/api/rest/Confirmations? accountName=Acme&login=ApiUser&emailAddress=ralph@aol.com' response = RestClient.delete(url, {:Password => "fhdf6df5fdy"}) puts response
import requests url = "http://www.example.com/api/rest/Confirmations?accountName=Acme&login=ApiUser&emailAddress=ralph@aol.com"; headers = {'password':'sfhdf6df5fdy'} resp = requests.delete(url, headers=headers) if resp.status_code == 200: print resp.text
curl -X delete -H "password: sfhdf6df5fdy" "http://www.example.com/api/rest/Confirmations? accountName=Acme &login=ApiUser &emailAddress=ralph@aol.com"