Operation
Updates a company.
Rw ui textbox macro | ||
---|---|---|
| ||
Only accessible with permission of pms.integration.profile |
Style |
---|
table { width: 100%; } body.page-gadget { padding-top: 20px; } .separator{ margin: 5px 0; } |
Div | ||
---|---|---|
| ||
PUT |
Div | ||
---|---|---|
| ||
https://{environment}.ulysescloud.com/api/{version}/chain/{chainId}/company/{companyId} |
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true | ||
companyId | Integer | true | The company to be updated |
Example request
Code Block | ||||
---|---|---|---|---|
| ||||
PUT https://prod.ulysescloud.com/api/v1/chain/1/company/11 |
Entity
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Example Body
The body that will be sent in the operation
Code Block | ||
---|---|---|
| ||
{
"id": 11,
"name": "Tesipro",
"taxId": "1234",
"iataId":null,
"companyEmailList": [{
"id": 11,
"primary": true,
"emailAddressType": {
"id": 1,
"code": "1",
"name": "Personal"
},
"email": "awarrenfa@smugmug.com",
"remark": null
}],
"companyAddressList": [{
"id": 11,
"primary": true,
"communicationLocationType": {
"id": 1,
"code": "1",
"name": "Home"
},
"street": "62211 Coleman Place",
"city": "Newport News",
"stateProvName": "Palencia",
"stateProv": {
"id": 37,
"code": "ES-P",
"name": "Palencia",
"country": {
"id": 199,
"code": "ESP",
"name": "SPAIN"
}
},
"postalCode": "23612",
"country": {
"id": 199,
"code": "ESP",
"name": "SPAIN"
},
"remark": "Address Remark"
}],
"companyPhoneList": [{
"id": 11,
"primary": true,
"phoneLocationType": {
"id": 6,
"code": "6",
"name": "Home"
},
"phoneTechType": {
"id": 1,
"code": "1",
"name": "Voice"
},
"countryAccessCode": "+34",
"areaCityCode": "B",
"phoneNumber": "1-(757)802-6554",
"extension": "1",
"remark": "Phone Remark"
}],
"companyTaxAddress": null,
"remark": "Company Remarks"
} |
Response
Property | Type | Required | Description |
---|---|---|---|
ResponseApiMessage | ResponseApiMessage | true | Description of the response of the success operation |
Example response
Code Block | ||
---|---|---|
| ||
{ "httpStatus": "201", "userMessage": "Success", "technicalMessage": "Success company updated", "errorCode": "0", "id": 1 } |