Get Production Plans
DRAFT
Production Plans - Translated to External Sys ID
GET https://ezplan/api/v1/production-plan-translated-to-ext-sys-id
This endpoint provides production plans for your company at the planning item level along with the external system ID, which is typically the SKU. In the case of wine, the SKU represents the vintaged level item. Note that this is an authenticated request. So, you will have to have your JWT token as part of the request header.
Query Parameters
Name
Type
Description
items
string
A comma separated list of items. Each item is enclosed in a quote.
locations
string
A comma separated list of locations. Each location is enclosed in a quote.
Headers
Name
Type
Description
Authorization: Bearer
string
The JWT token
{
"message": "1 production plan(s) retrieved.",
"content": {
"item": "123ABC",
"description": "ZAMazing Napa Valley Cabernet - 12x750ml",
"external_system_id": "123ABC2020",
"comments": "2020",
"location": "ZAM-WINERY",
"start_date": "2020-01-01",
"end_date": "2020-01-02",
"firm_flag": 1,
"quantity": 1000,
"uom": "9LE"
},
"count": 1,
"additional":
[
]
}Last updated
Was this helpful?