Skip to main content
GET
/
api
/
v4.0
/
integrations
/
orders
/
{orderId}
/
transactions
Order Transactions
curl --request GET \
  --url https://api.gameball.co/api/v4.0/integrations/orders/{orderId}/transactions \
  --header 'apikey: <api-key>'
{
  "transactions": [
    {
      "transactionDate": "2024-10-16T08:13:29.29",
      "gameballTransactionId": 11034754,
      "transactionType": "PaymentReward",
      "amount": 250.75,
      "transactionId": "ORD12345",
      "equivalentPoints": 192
    }
  ],
  "count": 1
}
Retrieve transactional details linked to an order (rewards, refunds, redemptions).
Security: Provide both apikey and secretkey headers.

Authorizations

apikey
string
header
required

Path Parameters

orderId
string
required

Unique identifier for the order, which is case-sensitive. It is used to reference and retrieve the order's transactions accurately.

Response

200 - application/json

Order transactions retrieved successfully

transactions
object[]

List of transactions associated with the order. Example: If a customer places an order and redeems points, the transactions array will contain both the cashback reward transaction and the redemption transaction.

count
integer

Total number of transactions associated with the order.

Example:

1