Specification removed successfully
OK
Specification updated successfully
Specification created successfully
const response = await fetch('https://api.zydon.com.br/api/sales/products/{product_id}/specification/{id}', { method: 'DELETE', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "id": "text" }
const response = await fetch('https://api.zydon.com.br/api/sales/products/{product_id}/specification/{id}', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "id": "text", "product_id": "text", "specification_id": "text", "specification_values": [ "text" ] }
const response = await fetch('https://api.zydon.com.br/api/sales/products/{product_id}/specification', { method: 'GET', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
const response = await fetch('https://api.zydon.com.br/api/sales/products/{product_id}/specification/{id}', { method: 'PUT', headers: { "Authorization": "Bearer JWT", "Content-Type": "application/json" }, body: JSON.stringify({ "product_id": "text", "specification_id": "text", "specification_values": [ "text" ] }), }); const data = await response.json();
const response = await fetch('https://api.zydon.com.br/api/sales/products/{product_id}/specification', { method: 'POST', headers: { "Authorization": "Bearer JWT", "Content-Type": "application/json" }, body: JSON.stringify({ "specification_id": "text", "specification_values": [ "text" ] }), }); const data = await response.json();