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
DELETE /api/users/{userId}
Parameter | Param Type | Value | Description | Example Value |
---|---|---|---|---|
Signing-Method | Header | id:value | id : This is the ID of the signing methodvalue : 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:
DELETE /api/users/5f23aff6-6786-4160-b5cb-8f65c79eec17
Response Body:
{
"success": true
}
Updated 6 months ago