Operation
Creates a new company in the system.
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true |
Example request
POST https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/company
Body
The body that will be sent in the operation
companyEmailList companyAddressList companyPhoneList companyTaxAddress falseField Type Required Description id int true (only in UPDATE proccess) Id of the Company. name string true Name of the Company. code string true Generated code from the name of the company. taxId string true TaxId of the Company. List of CompanyEmail false List of CompanyAddress false List of CompanyPhone false CompanyTaxAddress false remark String false assignedUser User false only show: userName profileType profileType false companyCustomFieldValueList List of CompanyCustomFieldValue false customerProfileList List of CustomerProfile extendedName String false paymentType PaymentType false payment Payment false paymentMode PaymentMode false taxDocumentType TaxDocumentType false chainSource ChainSource false chainSegment ChainSegment false chainChannel ChainSegment false language Language false chainProfileGroup ChainProfileGroup false reservationPriceModelType ReservationPriceModelType false
Example Body
The body that will be sent in the operation
{ "name": "Tesipro", "code": null, "taxId": "1234", "iataId": null, "companyEmailList": [ { "primary": true, "emailAddressType": { "id": 1, "code": "1", "name": "Personal" }, "email": "lrossre@microsoft.com", "remark": null } ], "companyAddressList": [ { "primary": true, "communicationLocationType": { "id": 1, "code": "1", "name": "Home" }, "street": "9 Colorado Junction", "city": "Sacramento", "stateProvName": "Ciudad Real", "stateProvCode": "ES-CR", "postalCode": "95818", "countryCode": "ES", "remark": "Address Remark" } ], "companyPhoneList": [ { "primary": true, "phoneLocationType": { "id": 6, "code": "6", "name": "Home" }, "phoneTechType": { "id": 1, "code": "1", "name": "Voice" }, "countryAccessCode": "+34", "areaCityCode": "B", "phoneNumber": "1-(530)311-9303", "extension": "1", "remark": "Phone Remark" } ], "companyTaxAddress": { "communicationLocationType": null, "street": "9 Colorado Junction", "city": "Sacramento", "stateProvName": "Orense", "stateProvCode": "ES-OR", "postalCode": "95818", "countryCode": "ES", "remark": "Address Remark" }, "remark": "Company Remarks" }
Response
Property | Type | Required | Description |
---|---|---|---|
ResponseApiMessage | ResponseApiMessage | true | Description of the response of the success operation |
Example response
{ "httpStatus": "201", "userMessage": "Success", "technicalMessage": "Success company created", "errorCode": "0", "id": 1 }