Skip to main content
GET
/
jobs
/
{job_id}
/
logs
Get job outcomes by ID
curl --request GET \
  --url https://api.zenskar.com/jobs/{job_id}/logs \
  --header 'organisation: <api-key>' \
  --header 'x-api-key: <api-key>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs2.zenskar.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
default:<your-api-key>
required
organisation
string
header
default:<your-organisation-id>
required

Path Parameters

job_id
string<uuid>
required

Query Parameters

cursor
string | null

The cursor indicating a unique set of results - this should be auto generated and you get it from the next and previous fields of the response

Example:

"V2VsbCBhcmV1IGN1cmlvdxM="

limit
integer | null

The number of results to return - defaults to 10

Example:

10

search
string | null
id
string<uuid> | null
id__in
string | null
id__isnull
boolean | null
status
string | null
status__in
string | null
status__isnull
boolean | null
created_at
string<date-time> | null
created_at__neq
string<date-time> | null
created_at__gt
string<date-time> | null
created_at__gte
string<date-time> | null
created_at__lt
string<date-time> | null
created_at__lte
string<date-time> | null
created_at__isnull
boolean | null
created_at__in
string | null
jobs__id
string<uuid> | null
jobs__id__in
string | null
jobs__id__isnull
boolean | null
jobs__name
string | null
jobs__name__ilike
string | null
jobs__name__like
string | null
jobs__name__in
string | null
jobs__name__isnull
boolean | null
jobs__description
string | null
jobs__description__ilike
string | null
jobs__description__like
string | null
jobs__description__in
string | null
jobs__description__isnull
boolean | null
jobs__resource
string | null
jobs__resource__in
string | null
jobs__resource__isnull
boolean | null
jobs__status
string | null
jobs__status__in
string | null
jobs__status__isnull
boolean | null
jobs__job_type
enum<string> | null
Available options:
manual,
automated
jobs__job_type__in
string | null
jobs__job_type__isnull
boolean | null
jobs__operation_type
string | null
jobs__operation_type__in
string | null
jobs__operation_type__isnull
boolean | null
jobs__created_at
string<date-time> | null
jobs__created_at__neq
string<date-time> | null
jobs__created_at__gt
string<date-time> | null
jobs__created_at__gte
string<date-time> | null
jobs__created_at__lt
string<date-time> | null
jobs__created_at__lte
string<date-time> | null
jobs__created_at__isnull
boolean | null
jobs__created_at__in
string | null
jobs__is_default
boolean | null
jobs__file_path
string | null
jobs__file_path__ilike
string | null
jobs__file_path__like
string | null
jobs__file_path__in
string | null
jobs__file_path__isnull
boolean | null

Response

Successful Response