curl --request DELETE \
--url https://crypto.westminister.tech/api/v1/auth/user/id/{id}/soft \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"is_active": false
}
'{
"message": "user deleted successfully"
}Soft deletes (disables) the specified user ID.
curl --request DELETE \
--url https://crypto.westminister.tech/api/v1/auth/user/id/{id}/soft \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"is_active": false
}
'{
"message": "user deleted successfully"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
User ID (UUID).
Optionally set false to mark inactive on soft delete.
User soft deleted
Confirmation message.