DELETE /api/sales/profiles/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
Profile removed successfully
{ "id": "text" }
""
0
25
asc
GET /api/sales/profiles HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
OK
{ "currentPage": 1, "perPage": 1, "total": 1, "items": [ { "id": "text", "name": "text", "active": true, "partner_size": 1 } ] }
GET /api/sales/profiles/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
{ "id": "text", "name": "text", "active": true }
PUT /api/sales/profiles/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 29 { "name": "text", "active": true }
Profile updated successfully
POST /api/sales/profiles HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 41 { "id": "text", "name": "text", "active": true }
Profile created successfully