Skip to main content
POST
/
user
/
closeaccount
CloseAccount
curl --request POST \
  --url https://api.bunny.net/user/closeaccount \
  --header 'AccessKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "Password": "<string>",
  "Reason": "<string>"
}
'
{
  "Success": true,
  "Message": "<string>"
}

Authorizations

AccessKey
string
header
required

API Access Key authorization header

Body

The model used to request account closing

Password
string | null
Reason
string | null

Response

The account was successfully closed

The model used as a reqsponse to the close account request

Success
boolean
required
Message
string | null