Get List Upload Status
GET https://restapi.actonsoftware.com/api/1/list/{jobid}/status
This endpoint allows you to check the status of your list upload.
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
cURLPython
curl -X GET https://restapi.actonsoftware.com/api/1/list/15960012/status -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"
import requests url = "https://restapi.actonsoftware.com/api/1/list/12485026/status" payload = {} headers = { 'Authorization': 'Bearer 12345678-9abc-defg-hijk-lmnopqrs' } response = requests.request("GET", url, headers=headers, data = payload) print(response.text.encode('utf8'))