PUT
/
v1
/
manufacture_orders
/
:id
curl --location --request PUT 'https://api.stateset.com/v1/manufacture_orders/:id' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": "1",
    "memo": "test",
    "number": "1",
    "priority": "1",
    "site": "1",
    "yield_location": "1",
    "created_on": "2021-01-01T00:00:00Z",
    "expected_completion_date": "2021-01-01"
}'
{
    "id": "1",
    "memo": "test",
    "number": "1",
    "priority": "1",
    "site": "1",
    "yield_location": "1",
    "created_on": "2021-01-01T00:00:00Z",
    "expected_completion_date": "2021-01-01"
}

Body

id
string
required
Unique identifier for the manufacture order
memo
string
required
Additional notes or information about the manufacture order
number
string
required
Number assigned to the manufacture order
priority
string
required
Priority level of the manufacture order
site
string
required
Site or location associated with the manufacture order
yield_location
string
required
Location where the manufactured product will be stored
created_on
datetime
required
Date and time when the manufacture order was created
expected_completion_date
date
required
Expected date of completion for the manufacture order
issued_on
date
required
Date when the manufacture order was issued

Response

id
string
Unique identifier for the manufacture order
memo
string
Additional notes or information about the manufacture order
number
string
Number assigned to the manufacture order
priority
string
Priority level of the manufacture order
site
string
Site or location associated with the manufacture order
yield_location
string
Location where the manufactured product will be stored
created_on
datetime
Date and time when the manufacture order was created
expected_completion_date
date
Expected date of completion for the manufacture order
issued_on
date
Date when the manufacture order was issued
manufacture_order_line_items
object
curl --location --request PUT 'https://api.stateset.com/v1/manufacture_orders/:id' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": "1",
    "memo": "test",
    "number": "1",
    "priority": "1",
    "site": "1",
    "yield_location": "1",
    "created_on": "2021-01-01T00:00:00Z",
    "expected_completion_date": "2021-01-01"
}'
{
    "id": "1",
    "memo": "test",
    "number": "1",
    "priority": "1",
    "site": "1",
    "yield_location": "1",
    "created_on": "2021-01-01T00:00:00Z",
    "expected_completion_date": "2021-01-01"
}