curl --request POST \
--url https://app.tagadapay.com/api/public/v1/orders/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"pagination": {
"page": 1,
"pageSize": 20
}
}
'{
"items": [
{
"id": "ord_123",
"status": "paid",
"createdAt": "2024-03-20T10:30:00Z",
"customer": {
"email": "[email protected]",
"name": "John Doe"
},
"total": 2999,
"currency": "USD"
}
],
"total": 1,
"pageCount": 1
}Get all orders for the authenticated account with filtering, sorting, and pagination
curl --request POST \
--url https://app.tagadapay.com/api/public/v1/orders/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"pagination": {
"page": 1,
"pageSize": 20
}
}
'{
"items": [
{
"id": "ord_123",
"status": "paid",
"createdAt": "2024-03-20T10:30:00Z",
"customer": {
"email": "[email protected]",
"name": "John Doe"
},
"total": 2999,
"currency": "USD"
}
],
"total": 1,
"pageCount": 1
}Enter your API key as: Bearer your-api-key
Show child attributes
Show child attributes
Successful response