Skip to main content
DELETE
/
api
/
company
/
{company_uid}
Delete company
curl --request DELETE \
  --url https://dev.exante.app/api/company/{company_uid} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "status_code": 200,
  "message": "Success",
  "data": {}
}
Deletes a company and its related records.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

company_uid
string<uuid>
required

Company UID

Response

Company deleted

status
string
Example:

"success"

status_code
integer
Example:

200

message
string
Example:

"Success"

data
object

Optional payload included by endpoints that use the standard success wrapper.