/partners/{partner_id}/contact/{id}
curl -L \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/contact/{id}' \ --header 'Authorization: Bearer JWT'
{ "id": "text", "partner_id": "text", "name": "text", "role": "text", "phone": "text", "email": "text", "active": true }
curl -L \ --request PUT \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/contact/{id}' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "id": "text", "name": "text", "role": "text", "phone": "text", "email": "text", "active": true }'
curl -L \ --request DELETE \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/contact/{id}' \ --header 'Authorization: Bearer JWT'
{}
/partners/{partner_id}/contact
curl -L \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/contact' \ --header 'Authorization: Bearer JWT'
{ "currentPage": 1, "perPage": 1, "total": 1, "items": [ { "id": "text", "partner_id": "text", "name": "text", "role": "text", "phone": "text", "email": "text", "active": true } ] }
curl -L \ --request POST \ --url 'https://api.zydon.com.br/api/sales/partners/{partner_id}/contact' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "id": "text", "name": "text", "role": "text", "phone": "text", "email": "text", "active": true }'