Delete a user
How to delete one of your users.
Deleting a user will also soft delete their linked wallets. The wallets will no longer appear in any of our endpoints. Be careful when deleting a user.
Request Endpoint: reference
HTTP
DELETE /api/users/{userId}
Parameter
Param Type
Value
Description
Example Value
Signing-Method
Header
id:value
id
: This is the ID of the signing method
value
: This is the value of the signing method
756ae7a7-3713-43ee-9936-0dff50306488:123456
Parameter
Param Type
Description
Data Type
Mandatory
{userId}
Path
The ID of the user you want to delete
String
✅
Example Request:
HTTP
DELETE /api/users/5f23aff6-6786-4160-b5cb-8f65c79eec17
Response Body:
JSON
{
"success": true
}
Last updated