Update shop assortment
PATCH
/partners/{id}/shops/{shop_id}/assortment/{assortment_id}
const url = 'https://example.com/partners/example/shops/example/assortment/example';const options = { method: 'PATCH', headers: {'Content-Type': 'application/json'}, body: '{"name":"example","price":"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/shops/example/assortment/example \ --header 'Content-Type: application/json' \ --data '{ "name": "example", "price": "NaN" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
shop_id
required
string
assortment_id
required
string
Request Body required
Section titled “Request Body required ”Responses
Section titled “ Responses ” Media type application/json
object
id
required
string
price
Example
{ "price": "NaN"}