DELETE /api/sales/sellers/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
Seller removed successfully
{ "id": "text" }
""
0
25
asc
GET /api/sales/sellers HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
OK
{ "currentPage": 1, "perPage": 1, "total": 1, "items": [ { "id": "text", "name": "text", "seller_type": "text", "fiscal_registration_number": "text", "email": "text", "phone": "text", "mobile": "text", "active": true, "max_increase_rate": 1, "max_discount_rate": 1, "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } } ] }
GET /api/sales/sellers/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
{ "id": "text", "name": "text", "seller_type": "text", "fiscal_registration_number": "text", "email": "text", "phone": "text", "mobile": "text", "active": true, "max_increase_rate": 1, "max_discount_rate": 1, "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } }
PUT /api/sales/sellers/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 220 { "name": "text", "seller_type": "text", "fiscal_registration_number": "text", "email": "text", "phone": "text", "mobile": "text", "active": true, "max_increase_rate": 1, "max_discount_rate": 1, "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } }
Seller updated successfully
POST /api/sales/sellers HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 232 { "id": "text", "name": "text", "seller_type": "text", "fiscal_registration_number": "text", "email": "text", "phone": "text", "mobile": "text", "active": true, "max_increase_rate": 1, "max_discount_rate": 1, "attributes": { "ANY_ADDITIONAL_PROPERTY": {} } }
Seller created successfully