# Orders with product claims Endpoint listing all ordered products with unfulfilled claims. Endpoint supports Paging. Endpoint: GET /api/orders/claims Version: 1.0.0 Security: shoptetAccessToken, shoptetPrivateApiToken ## Query parameters: - `includeClosedAndCancelledOrders` (boolean) Include orders in final state - such as closed and cancelled orders. Default . Example: true ## Header parameters: - `Content-Type` (string, required) ## Response 200 fields (application/json): - `data` (object, required) - `data.orders` (array, required) - `data.orders.orderCode` (string, required) identifier (number) of the order, which can be used to query about the details. - `data.orders.statusId` (number, required) Order status. - `data.orders.productCode` (string, required) unique identification of the product variant. - `data.orders.amount` (string,null, required) amount ordered - `data.orders.amountCompleted` (string,null, required) amount of completed product - `data.paginator` (object, required) - `data.paginator.totalCount` (integer, required) total number of available records - `data.paginator.page` (integer, required) current page - `data.paginator.pageCount` (integer, required) total available of pages - `data.paginator.itemsOnPage` (integer, required) number of currently returned records - `data.paginator.itemsPerPage` (integer, required) required number of records per page - `errors` (array,null, required) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced