DELETE /api/sales/warehouses/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
Warehouse removed successfully
{ "id": "text" }
""
0
25
asc
GET /api/sales/warehouses HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
OK
{ "id": "text", "name": "text", "address_type": "text", "street": "text", "number": "text", "complement": "text", "neighborhood": "text", "city": "text", "state": "text", "country": "text", "active": true, "postal_code": "text" }
GET /api/sales/warehouses/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Accept: */*
PUT /api/sales/warehouses/{id} HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 192 { "name": "text", "address_type": "text", "street": "text", "number": "text", "complement": "text", "neighborhood": "text", "city": "text", "state": "text", "country": "text", "active": true, "postal_code": "text" }
Warehouse updated successfully
POST /api/sales/warehouses HTTP/1.1 Host: api.zydon.com.br Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 204 { "id": "text", "name": "text", "address_type": "text", "street": "text", "number": "text", "complement": "text", "neighborhood": "text", "city": "text", "state": "text", "country": "text", "active": true, "postal_code": "text" }
Warehouse created successfully