Skip to main content
DELETE
/
api
/
v1
/
eoa-accounts
/
{id}
Remove account address for authentication
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.valox.co/api/v1/eoa-accounts/{id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": {
    "id": "clp3j1f9a0000a1cdh6ezx2qv"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the externally owned account to be deleted.

Response

Successfully deleted the EOA account.

data
object