Browse the extensions reference

accounts

returns AccountList

Paginated Chart of Accounts listing.

Arguments

NameTypeDescription
classificationStringFilter on the account's statement classification, e.g. asset or revenue.
isActiveBooleanFilter on active status. Omit for both.
limitIntMaximum rows to return, 1-1000. Omit to use this field's own default; out of range raises INVALID_PAGINATION.
offsetIntRows to skip before returning, 0 or greater. Out of range raises INVALID_PAGINATION.

Returns AccountList

Paginated chart-of-accounts listing — flat (use the tree endpoint for parent/child structure).

FieldTypeDescription
accounts[Account!]!
paginationPaginationInfo!

Example

query
{ accounts }
curl
curl -X POST "https://api.robosystems.ai/extensions/$GRAPH_ID/graphql" \
  -H "X-API-Key: $ROBOSYSTEMS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "{ accounts }"}'