GET
/
transforms
/
{transforms_id}
/
job_status
Get Jobs Status
curl --request GET \
  --url https://api.streamkap.com/transforms/{transforms_id}/job_status \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "job_name": "<string>",
  "status": "RUNNING",
  "start_time": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

transforms_id
string
required

Response

Successful Response

id
string
required
job_name
string
required
status
enum<string>
required
Available options:
RUNNING,
CANCELED,
FAILED
start_time
string<date-time> | null