Skip to content

Delist Dependent Profile

Delist a dependent profile, making it no longer visible when listing dependents.

This endpoint delists a dependent profile. Delisted profiles will no longer appear when listing dependent profiles for a user, but the profile data is retained and can still be accessed directly by its ID if needed.

Delisting is useful when the user doesn't want to see the dependent in the list anymore.

Endpoint

MethodUrl
POST/v1.0/dependent-profiles/:dependent_profile_id/delist

Path Parameters

dependent_profile_id
string
required

The unique identifier of the dependent profile to delist.

Sample Request

Copied
1curl -X POST 'https://api.worklayer.com/v1.0/dependent-profiles/e7b513b9-d795-4475-9382-96710ca61622/delist' \
2-H 'Authorization: Bearer {token}' \
3-H 'Content-Type: application/json'

Response

The endpoint returns an empty response body with a 200 OK status code on success.

Sample Response

Copied
1{}

Errors

  • 404: the dependent profile does not exist
  • 403: you're not allowed to delist this profile
  • 409: the profile is currently associated with an active job
Last updated on June 18, 2025