Job Status¶
https://{cluster-id}.elevate-api.cloud/api/admin/v3/event-data/job-status
GET¶
Active LTS
This endpoint is part of an API that is currently in Active Long Time Support and its end of life is 2026-12-31. All endpoints in this API version, including this, will be removed. Please upgrade to the latest version before LTS expires.
API upgrade guides can be found here:
More information regarding the API versioning strategy can be found here.
The customer data job status can be performed to check the current job status of an export or removal job. More GDPR information is available here.
Request¶
Header parameters¶
Name | Description | Example |
---|---|---|
Api-Key Required | Api-key that was supplied during on-boarding | pkA123456789AB1BE.. |
Query parameters¶
Name | Description | Example |
---|---|---|
jid Required | The id of a event data job. | 962d41f3-1a53-4bb8-bd01-3b85310fb45f |
curl -i \
-X GET \
-H 'Api-Key: pkA123456789AB1BE..' \
"https://{cluster-id}.elevate-api.cloud/api/admin/v3/event-data/job-status?jid=962d41f3-1a53-4bb8-bd01-3b85310fb45f"
Response¶
Response codes¶
Status | Description |
---|---|
403 | Incorrect cluster credentials. |
400 | Invalid or missing required arguments. |
200 | Request accepted, check the status of job with the supplied id. |
Response body¶
Example
{
"jid" : "962d41f3-1a53-4bb8-bd01-3b85310fb45f",
"status" : "created"
}
Schema
EventDataJobResult¶
The object representation of create or checking the status of a event data job.
Name | Type | Description |
---|---|---|
jid | string | The identifier of the event data job. Example: "962d41f3-1a53-4bb8-bd01-3b85310fb45f" |
status | string | The current status of the job Supported values: not_found , created , waiting , running , done , error .Example: "created" |