Should you notice any errors in our documentation, please don’t hesitate to contact us. Thank you!
| name | type | default | info |
|---|---|---|---|
| sort | string | NONE | OPTIONAL, defaults to created_at |
| skip_meta_totals | boolean | false | OPTIONAL, defaults to false |
| page[number] integer/string | 1 | OPTIONAL, defaults to 1 | |
| page[size] | integer/string | 25 | OPTIONAL, default page size is 25, max page size is 250 |
curl --location -g --request GET 'https://www-staging.givve.com/api/scheduled_load_orders//entries?sort=created_at&skip_meta_totals=&page[number]=1&page[size]=25' \
--header 'Accept-Version: v2' \
--header 'Authorization: Bearer <token>'{
"meta": {
"total_pages": 0,
"current_page": 0,
"page_size": 0,
"total_entries": 0
},
"data": [
{
"id": "string",
"created_at": {
"informational_timestamp": "2019-08-24T14:15:22.123Z"
},
"updated_at": {
"informational_timestamp": "2019-08-24T14:15:22.123Z"
},
"amount": {
"cents": 0,
"currency": "EUR"
},
"voucher": {
"id": "string",
"type": "string",
"token": "string"
},
"paused": true
}
],
"links": {
"self": "http://example.com",
"first": "http://example.com",
"prev": "http://example.com",
"next": "http://example.com",
"last": "http://example.com"
}
}