Skip to main content
DELETE
https://apis.hopnow.io
/
v1
/
customers
/
{customer_id}
/
accounts
/
{account_id}
Delete Account
curl --request DELETE \
  --url https://apis.hopnow.io/v1/customers/{customer_id}/accounts/{account_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "deleted": true
}
Account must have zero available balance in all currencies and no pending transactions before deletion.

Path Parameters

customer_id
string
required
The customer’s external ID (starts with cus_)
account_id
string
required
The account’s external ID (starts with acc_)

Response

id
string
The account identifier that was deactivated
object
string
Always returns "account"
deleted
boolean
Always returns true

Response Example

{
  "id": "acc_1234567890abcdef",
  "object": "account",
  "deleted": true
}