v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB
business

Update Business

Update the parameters of a business identity

patch/update

Request body

businessIdstring uuid required

Business ID, whose business details needs to updated

companyNamestring

Name of the Company

registrationCountrystring

Country to which, company is registered (in ISO 3166 alpha-2 format)

registrationNumberstring

Registration number of the company

entityType'LIMITED_LIABILITY_COMPANY' | 'PUBLICLY_LISTED_COMPANY' | 'SOLE_PROPRIETOR' | 'PARTNERSHIP' | 'CORPORATION' | 'TRUST' | 'PRIVATE_FOUNDATION' | 'CHARITY' | 'NONPROFIT_ORGANIZATION'

A type of legal entity

Example request

{
  "companyName": "Abc123 Ltd",
  "registrationCountry": "EE",
  "registrationNumber": "545353234343",
  "incorporatedOn": {
    "year": 1980,
    "month": 12,
    "day": 3
  },
  "legalAddress": {
    "addressLine1": "Lootsa 1",
    "city": "Tallinn",
    "postalCode": "10118",
    "state": "10118",
    "country": "EE"
  },
  "primaryUser": {
    "firstName": "Jane",
    "lastName": "Doe",
    "mobile": {
      "countryCode": "+372",
      "number": "56272888"
    }
  }
}

Response

success

businessIdstring uuid required

Business ID

companyNamestring required

Name of the Company

registrationCountrystring

Country to which, company is registered (in ISO 3166 alpha-2 format)

registrationNumberstring required
entityType'LIMITED_LIABILITY_COMPANY' | 'PUBLICLY_LISTED_COMPANY' | 'SOLE_PROPRIETOR' | 'PARTNERSHIP' | 'CORPORATION' | 'TRUST' | 'PRIVATE_FOUNDATION' | 'CHARITY' | 'NONPROFIT_ORGANIZATION'

A type of legal entity

missingFieldsstring[]
outboundLimitAllowedstring

Outbound limit allowed

outboundLimitConsumedstring

Outbound limit consumed

Example response

{
  "companyName": "Abc123 Ltd",
  "registrationCountry": "EE",
  "registrationNumber": "43434564665756",
  "incorporatedOn": {
    "year": 1980,
    "month": 12,
    "day": 3
  },
  "legalAddress": {
    "addressLine1": "Lootsa 1",
    "city": "Tallinn",
    "postalCode": "10118",
    "state": "10118",
    "country": "EE"
  },
  "primaryUser": {
    "firstName": "Jane",
    "lastName": "Doe",
    "mobile": {
      "countryCode": "+372",
      "number": "56272888"
    }
  },
  "missingFields": [
    "incorporatedOn",
    "entityType"
  ],
  "outboundLimitAllowed": "7500000",
  "outboundLimitConsumed": "1000"
}