Bundles
List orders for a bundle
Returns a paginated list of orders associated with the specified bundle.
get/bundles/{bundle_id}/orders
Path parameters
bundle_idstring required
Bundle ID.
Query parameters
pageinteger
Page number for pagination.
per_pageinteger
Number of results per page.
Response
Paginated list of orders for this bundle
Example response
{
"current_page": 1,
"last_page": 5,
"per_page": 15,
"total": 73,
"from": 1,
"to": 15,
"data": [
{
"self": "/2.0/orders/1234",
"currency": "EUR",
"amount": "150.00 €"
}
]
}