Preistabellen eines Kunden abrufen
Request
GET /api/v1/customers/:customer_number/price-tables
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/customers/10001/price-tables' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": [
{
"id": 4,
"start_date": "2024-08-27",
"customer_number": "10001",
"type": {
"id": "customer",
"name": "Customer Price Table"
},
"prices": [
{
"id": 14,
"price_group": "01",
"price": "500.00",
"price_table_id": 4
},
{
"id": 16,
"price_group": "02",
"price": "200.00",
"price_table_id": 4
},
{
"id": 18,
"price_group": "03",
"price": "100.00",
"price_table_id": 4
}
],
"factors": []
}
]
}