Rendley docs

Jobs

#List jobs

GET/v1/jobs

List the authenticated user's jobs, optionally filtered by project, type, source, and acknowledged state.

Query parameters

project_idstringOptional

Filter by project ID

job_typestringOptional

Filter by job type

acknowledgedbooleanOptional

Filter by acknowledged state

source_typestringOptional

Filter by source type (defaults to studio)

source_idstringOptional

Filter by source ID

Response codes
200

OK

400

Bad Request

401

Unauthorized

#Get a job

GET/v1/jobs/{id}

Get a single job owned by the authenticated user by its ID.

Path parameters

idstring

Job ID

Response codes
200

OK

401

Unauthorized

404

Not Found

#Update a job

PATCH/v1/jobs/{id}

Update a job owned by the authenticated user, e.g. mark it acknowledged.

Path parameters

idstring

Job ID

Request body

acknowledgedbooleanOptional
Response codes
200

OK

400

Bad Request

401

Unauthorized

404

Not Found

#Cancel a job

DELETE/v1/jobs/{id}

Cancel a job owned by the authenticated user by its ID.

Path parameters

idstring

Job ID

Response codes
200

OK

401

Unauthorized

404

Not Found