Email Append HTTP API

Description

This API append single / multiple emails and returns the response in the same call. It supports HTTP POST requests.

API Format

Currently we support HTTP request. Data in following json format must be send in ‘post’ request.

{
     “ApiKey”: “put your key here”,
     “AppendModule”: “EmailAppend”,
     “AppendType”:1,
     “Data”: [{
         “FirstName”: “”,
         “LastName”: “”,
         “Address”: “”,
         “City”: “”,
         “Zip”: “”
     }]
}

Example

{
     “ApiKey”: “put your key here”,
     “AppendModule”:      “EmailAppend”,
     “AppendType”:1,
     “Data”: [{
         “FirstName”: “sxxn”,
         “LastName”: “dxxxs”,
         “Address”: “6xxx Oxxx Dx Axx xxx1”,
         “City”: “PxxxO”,
         “Zip”: “7xxx4”
     },
     {
         “FirstName”: “wxxxxam”,
         “LastName”: “sxxxxer”,
         “Address”: “6xx1 xxxO Dx xxT x2xx”,
         “City”: “Pxxxx”,
         “Zip”: “xx0x4”
     },
     {
         “FirstName”: “Txxxxhy”,
         “LastName”: “xxxsxer”,
         “Address”: “xxx6 Axxmo Dx”,
         “City”: “xxx xxexo”,
         “Zip”: “x2xx5”
     },
     {
         “FirstName”: “Axxon”,
         “LastName”: “xxxxht”,
         “Address”: “xx0 xxxcxer Sx”,
         “City”: “Txxxxxxon”,
         “Zip”: “xxx65”
     }]
}

Response

If success:

{
     “ResponseDetail”:
     {
     “Token”: “Token will returned”,
     “Data”:[
     {
         “FirstName”: “sxxn”,
         “LastName”: “dxxxs”,
         “Address”: “6xxx Oxxx Dx Axx xxx1”,
         “City”: “PxxxO”,
         “Zip”: “7xxx4”
         “Email”:[email protected]
     },
     {
         “FirstName”: “wxxxxam”,
         “LastName”: “sxxxxer”,
         “Address”: “6xx1 xxxO Dx xxT x2xx”,
         “City”: “Pxxxx”,
         “Zip”: “xx0x4”
         “Email”:””
     },
     {
     “FirstName”: “Txxxxhy”,
     “LastName”: “xxxsxer”,
     “Address”: “xxx6 Axxmo Dx”,
     “City”: “xxx xxexo”,
     “Zip”: “x2xx5”
     “Email”:””
     }
     ],
     “OrderAmount”:”$0.08″,
     “Count”:5
     },
     “Status”:true,
     “Message”:null
}

If failed:

{
      “ResponseDetail”: null,

      “Status”: false,
      “Message”: “Invalid API Key.”
}

Append Type Description:

{
      1 – Individual
      2 – House Hold
      3 – Address
      4 – Individual + House Hold
}