Get list of Orders of a Project
GET/projects/ {projectId}/ orders/
v2
GET
order-list-project-orders
The list of Order of a Project the User has access to, can be filtered by orderStatus, articleTemplate and count.
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/projects/f0f86186-0a5a-45b2-aa33-502777496347/orders?limit=50&page=1&includesStatus=NEW&excludesStatus=NEW&templateNames=string
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.contract.orderListProjectOrders({
"projectId": "f0f86186-0a5a-45b2-aa33-502777496347",
"queryParameters": {
"limit": 50,
"page": 1,
"includesStatus": [
"NEW"
],
"excludesStatus": [
"NEW"
],
"templateNames": [
"string"
]
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Contract\OrderListProjectOrders\OrderListProjectOrdersRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new OrderListProjectOrdersRequest(
projectId: "f0f86186-0a5a-45b2-aa33-502777496347"
))
->withLimit(50)
->withPage(1)
->withIncludesStatus(["NEW"])
->withExcludesStatus(["NEW"])
->withTemplateNames(["string"]);
$response = $client->contract()->orderListProjectOrders($request);
var_dump($response->getBody();