/partners/{partner_id}/sellers/{id}
OK
Partner Seller was not found
An internal server error was thrown
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": {} } }
Partner Seller updated successfully
A validation error was thrown
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 '{"attributes":{"ANY_ADDITIONAL_PROPERTY":{}}}'
Partner Seller removed successfully
curl -L \ --request DELETE \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/sellers/{id}' \ --header 'Authorization: Bearer JWT'
{ "id": "text" }
/partners/{partner_id}/sellers
Partner Sellers was not found
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": {} } } ] }
Partner Seller created successfully
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":{}}}'