Skip to content

Reject a Job Scope Change

Reject a scope change.

The reject endpoint will dismiss the job scope change request and the job will remain in the ON_HOLD status.

Endpoint

MethodUrl
POST/v1.0/jobs/{job_id}/scope_change/reject

Url Parameters

job_id
guid

The job's ID.


Request Payload

reason
string

The reason for rejecting.

Sample Request

Copied
1curl -X POST 'https://api.worklayer.com/v1.0/jobs/499d692d-67aa-4127-a45c-b9e27f54afad/scope_change/approve' \
2-H 'Authorization: Bearer {token}'
3-d '{ "reason": "Client chose to use another service." }'

Response

The updated Job. See the job reference page for more details.

Sample Response

Copied
1{
2 "id": "499d692d-67aa-4127-a45c-b9e27f54afad",
3 "short_id": "TWQXJWMABW8",
4 "name": "Name from service package",
5 "description": "Tony Stark | 2021 | 1040",
6 "status": "ON_HOLD",
7 "create_time": "2021-04-28T13:45:25.781Z",
8 "update_time": "2021-04-28T13:52:27.379Z",
9 "transmit_time": null,
10 "deadline_time": null,
11 "total_amount": 10,
12 "members": [
13 {
14 "role": "CHAMPION",
15 "type": "CLIENT",
16 "user_id": "a4feef24-00da-4340-8b7c-a532e0607fdd",
17 "given_name": "Tony",
18 "family_name": "Stark",
19 "display_name": "Tony Stark"
20 }
21 ]
22}
Last updated on December 12, 2022