# Get Transactions Get all transactions for an order. Endpoint: GET /v1/orders/{orderId}/transactions Security: OAuth2 ## Path parameters: - `orderId` (string, required) The unique identifier of the order. ## Response 200 fields (application/json): - `items` (array) - `items.id` (string, required) The unique identifier of the transaction. - `items.status` (string, required) The status of the transaction. Enum: "UNPAID", "PAID", "REFUNDED_PARTIALLY", "REFUNDED_FULLY" - `items.amount` (object, required) The transaction amount. - `items.amount.currency` (string, required) The ISO 4217 currency code. Example: "USD" - `items.amount.value` (integer, required) The price in the smallest currency unit (e.g. cents for USD). Example: 2500 - `items.amount.exponent` (integer, required) The number of decimal places for the currency. Example: 2 - `items.created_at` (string, required) Timestamp of when the transaction was created. ## Response 400 fields (application/json): - `message` (string, required) - `code` (string, required) ## Response 404 fields (application/json): - `message` (string, required) - `code` (string, required) ## Response default fields (application/json): - `message` (string, required) - `code` (string, required)