Make a request ยป

ImportService.GetImportIgnoredDuplicates

Gets the list of duplicate email addresses for a given import, which are ignored in the import process. History is kept for 30 days, after which it is deleted.

2015-12-29 v2: (first version is v2)

See code examples


URL Parameters

Http verb: GET
URI: Full url: http://se.api.anpasia.com/import/v2/{importId}/ignoredduplicates
URL parameters:
importIdStringId of the import

Body parameters

Body parameters
Not used

Response

Body parameters
returns
Returns a list of duplicate email addresses which are ignored for a given import

Code Int32 The response Code.
Message String The response Message.
Result
The response Result.

TotalCount Int32 Total number of emails
StringIList
<String>
Body Example


{
    "Code": 1,
    "Message": "OK",
    "Result": {
        "TotalCount": 2,
        "Emails": [
            "email1@apsis.com",
            "email2@apsis.com"
        ]
    }
}
  <Code>1</Code>
  <Message>OK</Message>
  <Result>
    <TotalCount>2</TotalCount>
      <a:string>email1@apsis.com</a:string>
      <a:string>email2@apsis.com</a:string>
    </Emails>
  </Result>
</Response>
                

Help

Code examples


curl -i -X GET
-H 'Content-type: application/json'
-H 'Accept: application/json' 
-H 'Authorization: basic $api_key_64baseformat'
url http://se.api.anpasia.com/import/v2/{importId}/ignoredduplicates