Skip to content

Delist Business Profile

Marks a business profile as delisted, removing it from active use.

This endpoint marks a business profile as delisted, removing it from active use. Delisted profiles will not appear in list results, but can still be retrieved directly by their ID. Once delisted, the profile's delist_info field will be populated with the time and user that performed the delisting.

Endpoint

MethodUrl
POST/v1.0/business-profiles/:profile_id/delist

Path Parameters

profile_id
string
required

The unique identifier of the business profile to delist.

Request Body

No request body is required for this endpoint.

Sample Request

bash
Copied
1curl -X POST 'https://api.worklayer.com/v1.0/business-profiles/3b31f309-93ad-463a-ad1d-c39cac1c0a3d/delist' \
2-H 'Authorization: Bearer {token}'

Response

The response body is empty on successful delisting.

Sample Response

json
Copied
1{}

Errors

  • 400: Invalid profile ID format
  • 403: You're not allowed to delist this profile
  • 404: Business profile not found
Last updated on March 10, 2026