curl -L \ --request DELETE \ --url 'https://api.zydon.com.br/api/sales/variations/{id}' \ --header 'Authorization: Bearer JWT'
{ "id": "text" }
curl -L \ --url 'https://api.zydon.com.br/api/sales/variations' \ --header 'Authorization: Bearer JWT'
{ "id": "text", "name": "text", "active": true, "values": [ "text" ] }
curl -L \ --url 'https://api.zydon.com.br/api/sales/variations/{id}' \ --header 'Authorization: Bearer JWT'
curl -L \ --request PUT \ --url 'https://api.zydon.com.br/api/sales/variations/{id}' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "name": "text", "active": true, "values": [ "text" ] }'
curl -L \ --request POST \ --url 'https://api.zydon.com.br/api/sales/variations' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "id": "text", "name": "text", "active": true, "values": [ "text" ] }'