ROLE_MANUFACTURER_ADMIN and the service provider must belong to the current client. Pagination uses Pagerfanta with maxPerPage=100. Filters via query parameters: state, from_date, to_date.{
"jsonapi": {
"version": "1.0"
},
"meta": {
"page": 1,
"limit": 100,
"pages": 1,
"total": 1
},
"links": {
"first": "https://api.example.com/api/serviceproviders/sp1/orders?page=1",
"last": "https://api.example.com/api/serviceproviders/sp1/orders?page=1",
"next": null,
"previous": null
},
"data": [
{
"type": "orders",
"id": "ord-uuid-1111",
"attributes": {
"reference": "shop-order-12345",
"status": "new"
}
}
]
}