curl -L \ --request DELETE \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/sellers/{id}' \ --header 'Authorization: Bearer JWT'
{ "id": "text" }
curl -L \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/sellers' \ --header 'Authorization: Bearer JWT'
{ "currentPage": 1, "perPage": 1, "total": 1, "items": [ { "id": "text", "partner_id": "text", "seller_id": "text", "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } } ] }
curl -L \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/sellers/{id}' \ --header 'Authorization: Bearer JWT'
{ "id": "text", "partner_id": "text", "seller_id": "text", "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } }
curl -L \ --request PUT \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/sellers/{id}' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "id": "text", "seller_id": "text", "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } }'
curl -L \ --request POST \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/sellers' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "id": "text", "seller_id": "text", "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } }'