Paginated list of the authenticated user’s orders.
cURL
curl --request GET \ --url https://orbitflare.com/api/customer/v2/orders \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "<string>", "data": { "orders": { "data": [ { "reference": "<string>", "status": "<string>", "payment_status": "<string>", "product_name": "<string>", "product_slug": "<string>", "total_amount": 123, "billing_period": "<string>", "placed_at": "2023-11-07T05:31:56Z", "fulfilled_at": "2023-11-07T05:31:56Z" } ], "current_page": 123, "last_page": 123, "per_page": 123, "total": 123 } } }
Bearer token from device or wallet auth
Results per page (max 50, default 15).
x <= 50
Page number.
Orders retrieved.
true
Show child attributes
Was this page helpful?