returns AccountRollups
CoA accounts grouped by reporting element with balances.
| Name | Type | Description |
|---|---|---|
| mappingId | String | The mapping whose associations group the accounts. Omit for the active mapping. |
| startDate | Date | Start of the balance window (inclusive). |
| endDate | Date | End of the balance window (inclusive). |
Mapping rendered as account rollups — every reporting concept the
mapping defines, with the CoA accounts that contribute to it and the
current balance for each. totalUnmapped tracks gaps for UI.
| Field | Type | Description |
|---|---|---|
| mappingId | String! | — |
| mappingName | String! | — |
| groups | [AccountRollupGroup!]! | — |
| totalMapped | Int! | — |
| totalUnmapped | Int! | — |
{ accountRollups { mappingId mappingName totalMapped totalUnmapped } }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": "{ accountRollups { mappingId mappingName totalMapped totalUnmapped } }"}'