Get list of Orders of a Customer
GET/customers/ {customerId}/ orders/
v2
GET
order-list-customer-orders
The list of Orders of a Customer 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/customers/string/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.orderListCustomerOrders({
"customerId": "string",
"queryParameters": {
"limit": 50,
"page": 1,
"includesStatus": [
"NEW"
],
"excludesStatus": [
"NEW"
],
"templateNames": [
"string"
]
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Contract\OrderListCustomerOrders\OrderListCustomerOrdersRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new OrderListCustomerOrdersRequest(
customerId: "string"
))
->withLimit(50)
->withPage(1)
->withIncludesStatus(["NEW"])
->withExcludesStatus(["NEW"])
->withTemplateNames(["string"]);
$response = $client->contract()->orderListCustomerOrders($request);
var_dump($response->getBody();