ClientSphereDocs
API reference/Account Notes

Delete account note

Deletes an account note by its id. The account it was attached to is left unchanged.

DELETE
/account-notes/{id}

Authorization

AuthorizationRequiredBearer <token>

API key as Bearer token: Authorization: Bearer sk_live_.... Use sk_live_ prefixed keys for production data and sk_test_ prefixed keys for sandbox/test data.

In: header

X-API-Key<token>

API key via header: X-API-Key: sk_live_.... Use sk_live_ prefixed keys for production data and sk_test_ prefixed keys for sandbox/test data.

In: header

Path Parameters

idRequiredstring

Account note ID

Format: "uuid"
curl -X DELETE "https://clientsphere.io/api/v1/account-notes/497f6eca-6276-4993-bfeb-53cbbbba6f08" \
  -H "Authorization: Bearer <token>"

Deletion confirmed

{
  "data": {
    "id": "string",
    "deleted": true
  }
}