Logo PopinaPopina API

Fetch order transactions

Fetch payment transactions with validated status related to an order by its id

GET/v1/transactions/{orderId}
authorization<token>

To get an API key, please contact us. We'll be happy to help you.

In: header

Path Parameters

orderIdstring

The ID of the order to which the transactions are associated.

Response Body

application/json

curl -X GET "http://localhost:4006/v1/transactions/string"
[
  {
    "id": "03f405b3-36b0-4fc4-aafc-c3b117f89fe6",
    "amount": 1000,
    "transactionType": "table",
    "date": "2024-07-05T13:27:32.874Z",
    "metadata": {
      "tip": 100,
      "parentTransaction": null
    }
  }
]