Skip to main content
POST
/
agencies
/
delete-account
Delete currently logged-in Agency account
curl --request POST \
  --url https://api.boosterberg.com-beta.com/v1/agencies/delete-account \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ExitPoll": {
    "reason": "Too expensive",
    "other_reason": "Switched to a competitor"
  }
}
'
{
  "success": true,
  "message": "Your account has been removed."
}

Authorizations

Authorization
string
header
required

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

Body

application/json
ExitPoll
object

Response

Account successfully deleted

success
boolean
Example:

true

message
string
Example:

"Your account has been removed."