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

External Jobs

Create an External Job

post

Creates a new external job with plugin and context configuration

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Body
typestringRequired

Job type

privacystringOptional

Privacy setting

Responses
201

Default Response

application/json
statusintegerRequiredExample: 201
post/api/public/v3/external-jobs

Get External Job by ID

get

Returns a single external job by its ID

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Path parameters
idstringRequired

External Job ID

Responses
200

Default Response

application/json
statusintegerRequiredExample: 200
get/api/public/v3/external-jobs/{id}

Delete an External Job

delete

Deletes an external job by ID

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Path parameters
idstringRequired

External Job ID

Responses
200

External job deleted successfully

application/json

External job deleted successfully

statusintegerRequiredExample: 200
dataobjectOptional
delete/api/public/v3/external-jobs/{id}

Update an External Job

patch

Partially updates an existing external job by ID

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Path parameters
idstringRequired

External Job ID

Body
typestringOptional

Job type

privacystringOptional

Privacy setting

Responses
200

Default Response

application/json
statusintegerRequiredExample: 200
patch/api/public/v3/external-jobs/{id}

Filter External Jobs

post

Returns a list of all external jobs, optionally filtered by type

Authorizations
AuthorizationstringRequired

Insert the JWT token here

Body
typestringOptional

Filter by job type

Responses
200

Default Response

application/json
statusintegerRequiredExample: 200
post/api/public/v3/external-jobs/filter

Last updated

Was this helpful?