REST Email Marketing API DocumentationCOMPLAINTS
When configured properly, Symphonie will receive a "complaint" from the Internet Service Providers (ISPs) that
indicates the recipient hit the "This is spam" or similar worded item. You can use this API call to determine if a specific email
address has complained, or to find all email addresses that complained in a time period. HTTP VERBGet URL/API/Rest/Complaints ARGUMENTS
EmailAddress (optional)
Required permissionStandardReports ERRORS
Email address not found in the database RETURNS
There could be thousands of rows, so the data is returned with an optional "Fetch-more GUID". The basic data is the email address and the time of the complaint. EXAMPLEThis example fetches all complaints, across all time. |
string url = "http://example.com/api/rest/Complaints?accountName=acme&login=ApiUser";
try
{
System.Net.HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Headers.Add("Password", "34teh6i6j565ydw4h");
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/Complaints?accountName=Acme&login=ApiUser'
response = RestClient.get(url, {:Password=>'sfhdf6df5fdy'})
puts response
import requests
url = "http://www.example.com/api/rest/Complaints?accountName=Acmet&login=ApiUser";
headers = {'password':'sfhdf6df5fdy'}
resp = requests.get(url, headers=headers)
if resp.status_code == 200:
print resp.text
http://www.example.com/api/rest/Complaints?accountName=Acme&login=ApiUser&password=sfhdf6df5fdy