v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
profile

Update a business profile

Update user profile information for a business profile.

{% admonition type="warning" %} If user profile has been verified then there are restrictions on what information is allowed to change. {% /admonition %}

Where permitted, use the update window functionality by opening the update window, submitting the updated information using this endpoint, and finally closing the update window.

See Business Category for the list of valid firstLevelCategory and secondLevelCategory values.

put/v2/profiles/{profileId}/business-profile

Path parameters

profileIdinteger required

Business profile ID.

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Request body

idinteger

Business profile ID. This must match the business profile ID supplied in the URL.

businessNamestring

Business name.

businessNameInKatakanastring nullable

Business name in Katakana (only for Japanese businesses).

businessFreeFormDescriptionstring

Business free form description.

registrationNumberstring

Business registration number.

acnstring nullable

Australian Company Number (only for Australian businesses).

abnstring nullable

Australian Business Number (only for Australian businesses).

arbnstring nullable

Australian Registered Body Number (only for Australian businesses).

companyType'LIMITED' | 'PARTNERSHIP' | 'SOLE_TRADER' | 'LIMITED_BY_GUARANTEE' | 'LIMITED_LIABILITY_COMPANY' | 'FOR_PROFIT_CORPORATION' | 'NON_PROFIT_CORPORATION' | 'LIMITED_PARTNERSHIP' | 'LIMITED_LIABILITY_PARTNERSHIP' | 'GENERAL_PARTNERSHIP' | 'SOLE_PROPRIETORSHIP' | 'PRIVATE_LIMITED_COMPANY' | 'PUBLIC_LIMITED_COMPANY' | 'TRUST' | 'OTHER'

Company legal form.

companyRole'OWNER' | 'DIRECTOR' | 'OTHER'

Role of person.

externalCustomerIdstring

An external reference identifier mapping the customer of this profile to your system.

firstLevelCategorystring

Category of the business.

secondLevelCategorystring

Secondary category of the business.

webpagestring

Business webpage. Required if companyType is OTHER. If this is not provided for an OTHER companyType, the profile should not be allowed to create a transfer. For the rest of the companyTypes, it is highly recommended to always provide the business' website, to avoid payment issues such as suspensions. Wise will send a request for information (RFI) if this detail is not provided.

Example request

{
  "id": 14599371,
  "businessName": "ABC Logistics Ltd",
  "businessFreeFormDescription": "Biz free form desc",
  "registrationNumber": "12144939",
  "companyType": "LIMITED",
  "address": {
    "addressFirstLine": "1 A road",
    "city": "London",
    "countryIso2Code": "gb",
    "countryIso3Code": "gbr",
    "postCode": "11111"
  },
  "companyRole": "OWNER",
  "externalCustomerId": "67890-biz-acct",
  "firstLevelCategory": "CONSULTING_IT_BUSINESS_SERVICES",
  "secondLevelCategory": "DESIGN",
  "operationalAddresses": [
    {
      "addressFirstLine": "1 A road",
      "city": "London",
      "countryIso2Code": "gb",
      "countryIso3Code": "gbr",
      "postCode": "11111"
    }
  ],
  "webpage": "https://abc-logistics.com"
}

Response

Updated business profile.