PUT

/v1/manufacture_orders/:id

Bearer*

Body

idrequired
string

Unique identifier for the manufacture order

memorequired
string

Additional notes or information about the manufacture order

numberrequired
string

Number assigned to the manufacture order

priorityrequired
string

Priority level of the manufacture order

siterequired
string

Site or location associated with the manufacture order

yield_locationrequired
string

Location where the manufactured product will be stored

created_onrequired
datetime

Date and time when the manufacture order was created

expected_completion_daterequired
date

Expected date of completion for the manufacture order

issued_onrequired
date

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"
}