GET
/
job
/
{job}
/
update
curl --request GET \
  --url https://{appDomain}/job/{job}/update \
  --header 'Authorization: Bearer <token>'
"OK"

Authorizations

Authorization
string
header
required

Standard JWT token obtained via a separate authentication process. Required for most user-facing API endpoints.

Path Parameters

job
string
required

The UUID of the Job being updated.

Query Parameters

status
enum<string>
required

The new status of the job.

Available options:
busy,
done,
fail
signature
string
required

Laravel Signed URL signature.

expires
integer
required

Laravel Signed URL expiration timestamp.

Response

200
text/plain

OK. Status update acknowledged. Response body might be empty or a simple confirmation.

The response is of type string.

Example:

"OK"