Update packaging condition
PATCH
/partners/{id}/packaging/{packaging_id}
const url = 'https://example.com/partners/example/packaging/example';const options = { method: 'PATCH', headers: {'Content-Type': 'application/json'}, body: '{"condition":"NaN"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://example.com/partners/example/packaging/example \ --header 'Content-Type: application/json' \ --data '{ "condition": "NaN" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
packaging_id
required
string
Request Body required
Section titled “Request Body required ”Responses
Section titled “ Responses ” Media type application/json