Skip to content

Remove a Supporting Client

Remove a supporting client from a job.

Removes a supporting client from a job. Only clients that were added as supporting clients can be removed with this endpoint; the primary CHAMPION client cannot.

After removal, the client no longer appears in the job's members array.

Tip

Need to add a supporting client instead? See Assign a supporting client.

Endpoint

MethodUrl
DELETEv1.0/jobs/{job_id}/supporting-clients/{client_id}

Url Parameters

job_id
guid

ID of the job to remove the supporting client from.

client_id
guid

The user ID of the supporting client to remove.

Sample Request

bash
Copied
1curl -X DELETE 'https://api.worklayer.com/v1.0/jobs/499d692d-67aa-4127-a45c-b9e27f54afad/supporting-clients/4fec291a-fbb8-413a-86c0-f25f51c57ddc' \
2-H 'Authorization: Bearer {token}'

Response

The updated job belonging to your workspace, with the supporting client removed from its members array. See the job resource page.

Sample Response

json
Copied
1{
2 "id": "499d692d-67aa-4127-a45c-b9e27f54afad",
3 "short_id": "TWQXJWMABW8",
4 "name": "The name of the job",
5 "description": "Tony Stark | 2021 | 1040",
6 "status": "INFO_GATHERING",
7 "create_time": "2021-04-28T13:45:25.781Z",
8 "update_time": "2021-04-28T13:52:27.379Z",
9 "total_amount": 10,
10 "members": [
11 {
12 "role": "CHAMPION",
13 "type": "CLIENT",
14 "user_id": "a4feef24-00da-4340-8b7c-a532e0607fdd",
15 "given_name": "Tony",
16 "family_name": "Stark",
17 "display_name": "Tony Stark"
18 }
19 ]
20}

Errors

  1. Forbidden: API Client does not have permission to manage supporting clients on the job.
  2. Unauthorized: API Client does not have valid credentials.
  3. BadRequest: The job type does not support supporting clients, or there was a malformed request.
  4. NotFound: A job with the requested job_id, or a supporting client with the requested client_id, could not be found.
Last updated on July 9, 2026