returns LedgerTransactionDetail
Single transaction with all entries and line items.
| Name | Type | Description |
|---|---|---|
| transactionId | String! | The transaction's id. |
Full transaction detail — header + every journal entry + every line item underneath. Used by the transaction detail page.
| Field | Type | Description |
|---|---|---|
| id | String! | — |
| number | String | — |
| type | String! | — |
| category | String | — |
| amount | Float! | — |
| currency | String! | — |
| date | Date! | — |
| dueDate | Date | — |
| merchantName | String | — |
| referenceNumber | String | — |
| description | String | — |
| source | String! | — |
| sourceId | String | — |
| status | String! | — |
| postedAt | DateTime | — |
| entries | [LedgerEntry!]! | — |
{ transaction(transactionId: "...") { id number type category } }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": "{ transaction(transactionId: \"...\") { id number type category } }"}'