Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request DELETE \
--url https://production.hifibridge.com/v2/users/{userId}/accounts/{accountId} \
--header 'Authorization: Bearer <token>'
{
"status": "INACTIVE",
"message": "Account deleted successfully",
"id": "583eb259-e78b-4f0c-a4b5-a8957876fa6f"
}
Delete an existing onramp or offramp account.
curl --request DELETE \
--url https://production.hifibridge.com/v2/users/{userId}/accounts/{accountId} \
--header 'Authorization: Bearer <token>'
{
"status": "INACTIVE",
"message": "Account deleted successfully",
"id": "583eb259-e78b-4f0c-a4b5-a8957876fa6f"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.