Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Operation

Creates a new company in the system.

Rw ui textbox macro
typewarning

Only accessible with permission of pms.integration.profile


Style
table {
width: 100%;
}
body.page-gadget {
padding-top: 20px;
}
.separator{
margin: 5px 0;
}



Div
style background-color: cornflowerblue; color: white; display: inline-block; padding: 5px; border-radius: 3px;

POST



Div
stylebackground-color: #0a2b1d; padding: 10px 1em; display: inline-block; color: white; border-radius: 3px;

https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/company



Request

PropertyTypeRequiredType parameterDefault valueDescription
chainIdIntegertruepath parameter


Example request

Code Block
languagepowershell
themeDJango
POST https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/company



Body

The body that will be sent in the operation

Insert excerpt
Company
Company
nopaneltrue

Example Body

The body that will be sent in the operation

Code Block
themeDJango
{
  "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",
  "profileType": {
	 "code": "2",
   	 "name": "Company",
     "nameI18n": "Company",
     "colorCode": "#00ACC1"
   }
}


Response

PropertyTypeRequiredDescription
ResponseApiMessageResponseApiMessagetrueDescription of the response of the success operation


Example response

Code Block
themeDJango
{
  "httpStatus": "201",
  "userMessage": "Success",
  "technicalMessage": "Success company created",
  "errorCode": "0",
  "id": 1
}