Orders
Order Transactions
This API retrieves the transactional details for a specified order in Gameball, identified by orderId. It includes information on rewards, refunds, and equivalent points, giving a detailed view of the financial activities associated with the order.
Security: Requires both apikey and secretkey headers.
get/api/v4.0/integrations/orders/{orderId}/transactions
Path parameters
orderIdstring required
Unique identifier for the order, which is case-sensitive. It is used to reference and retrieve the order's transactions accurately.
Response
Order transactions retrieved successfully
Example response
{
"transactions": [
{
"transactionDate": "2024-10-16T08:13:29.29",
"gameballTransactionId": 11034754,
"transactionType": "PaymentReward",
"amount": 250.75,
"transactionId": "ORD12345",
"equivalentPoints": 192
}
],
"count": 1
}