returns LedgerTransactionList
Paginated list of transactions.
| Name | Type | Description |
|---|---|---|
| type | String | Filter by transaction type. |
| startDate | Date | Start of the transaction-date window (inclusive). |
| endDate | Date | End of the transaction-date window (inclusive). |
| limit | Int | Maximum rows to return, 1-1000. Omit to use this field's own default; out of range raises INVALID_PAGINATION. |
| offset | Int | Rows to skip before returning, 0 or greater. Out of range raises INVALID_PAGINATION. |
Paginated transaction listing — header view.
| Field | Type | Description |
|---|---|---|
| transactions | [LedgerTransactionSummary!]! | — |
| pagination | PaginationInfo! | — |
{ transactions }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": "{ transactions }"}'