Authentication
Delete user
Deletes a registered user and all associated data. This action is irreversible. This API is asynchronous and will return a 200 status code if the request is accepted. The user and all associated data will be queued for deletion. Once deleted, a USER_DELETED webhook will be sent.
delete/snapTrade/deleteUser
Query parameters
userIdstring required
SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
Example:snaptrade-user-123
Response
OK
Example response
{
"status": "deleted",
"detail": "User queued for deletion; please wait for webhook for confirmation.",
"userId": "snaptrade-user-123"
}