Account
Update an account
Updates a specific account.
patch/account/{id}
Path parameters
idinteger required
The ID of the account.
Request body
Example request
{
"name": "Crypto Kong",
"status": "active"
}Response
An object representing the account.
Example response
{
"id": 1234,
"name": "Crypto Kong",
"slug": "crypto-kong",
"organization_id": 123,
"status": "active",
"deleted_at": "2026-05-15T12:34:56.000Z",
"metadata": {
"key": "value"
}
}