Delete a Business


Delete a Business


When you delete your business, all associated data will be permanently removed, but it can be restored if needed.

Request and Headers

curl --location --request POST 'https://core.getfaceage.com/api/v1/business/delete/{business_id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer your_secret_key' \

Response

Upon successful deleting, the endpoint returns a JSON object with a message.

{success} Response 200

{
    "status": true,
    "data": {
        "message": "The business deleted successfully"
    }
}


{warning} Response 401 : Unauthorized

{
    "message": "Unauthenticated."
}