For the complete documentation index, see llms.txt. This page is also available as Markdown.

Templates


Get available job templates

get

Get available job templates

Authorizations
AuthorizationstringRequired

Your ByteNite access token

Query parameters
pagination.limitinteger · int64Optional

Number of rows to return per page.

pagination.offsetinteger · int64Optional

Number of rows to skip before starting to collect the result set.

orderBystringOptional

Field to order the results by. Defaults to 'created_at'.

Responses
200

A successful response.

get/jobs/templates
GET /v1/customer/jobs/templates HTTP/1.1
Host: api.bytenite.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "pagination": {
    "total": 1,
    "offset": 1,
    "hasPrevious": true,
    "hasNext": true
  },
  "data": [
    {
      "id": "text",
      "owner": "text",
      "description": "text",
      "app": "text",
      "partitioner": "text",
      "assembler": "text"
    }
  ]
}

Last updated

Was this helpful?