Skip to main content
POST
/
user
/
delete-account
Delete user account
curl --request POST \
  --url https://jamquest-dev.techboo.net/api/v1/user/delete-account \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "<string>"
}
'
{
  "status": "ok",
  "data": {
    "message": "Account deleted successfully. You can reactivate your account by logging in within the next 15 days."
  }
}

Authorizations

Authorization
string
header
required

Access token obtained during login or registration. Use this token in the Authorization header for authenticated requests.

Body

application/json
password
string
required

The user's current password for confirmation.

Response

Account deleted successfully

status
string
Example:

"ok"

data
object