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