GET https://api.actonsoftware.com/api/1/list/{jobid}/status
This endpoint allows you to check the status of your list upload.
Customers wanting to access our API via our gateway in the EU can use this link:
GET https://api-eu.actonsoftware.com/api/1/list/{jobid}/status
Parameters
| Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
|---|---|---|---|---|---|
| Authorization: | Header | False | Required | String | Insert your generated access token. (Bearer {access token}) |
| jobid | Path | False | Required | String | Specify the "jobId" of the list being uploaded. |
Response
{
"status": "success",
"jobDetails": "{"status":"ok","listId":"l-0005","appendCount":2,"updateCount":0,"failedCount":0,"rejectedCount":0}",
"details": {
"status": "ok",
"listId": "l-0005",
"appendCount": 2,
"updateCount": 0,
"failedCount": 0,
"rejectedCount": 0
}
}
Code Examples
cURL
curl -X GET https://api.actonsoftware.com/api/1/list/15960012/status -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"