Skip to content

Request Reopen

Request to reopen a completed or cancelled job.

Request to reopen a job that has been completed or cancelled. Once a reopen request is approved, the job's status will change back to an active state.

This endpoint allows you to submit a reopen request with a reason. The request will be reviewed and processed accordingly.

Endpoint

MethodUrl
POSTv1.0/jobs/{job_id}/request-reopen

Url Parameters

job_id
guid

ID of the job to request reopening for.

Sample Request

Copied
1curl -X POST 'https://api.worklayer.com/v1.0/jobs/499d692d-67aa-4127-a45c-b9e27f54afad/request-reopen' \
2-H 'Authorization: Bearer {token}' \
3-H 'Content-Type: application/json' \
4-d '{
5 "requested_by_user_id": "7c4e2b1a-9d3f-4e5a-8b6c-3f7d8e9a1b2c",
6 "reason": "Additional documents need to be submitted for tax filing"
7}'

Request Payload

requested_by_user_id
guid
required

ID of the user requesting reopen.

reason
string
required

A clear explanation for why the job needs to be reopened.

Response

An empty response indicates that the reopening request was successfully submitted.

Sample Response

Copied
1{}
Last updated on December 27, 2024