v5
latestOpenAPI 3.1.02026-07-262421791.5 MBCreate a business profile (V3)
Create a business profile and its authorized representative in a single request.
{% admonition type="info" %} This request accepts an optional field in the header, X-idempotence-uuid. This should be unique for each Profile you create. In the event that the request fails, you should use the same value again when retrying. If the X-idempotence-uuid header is not provided and a Profile already exists, then you will receive a response with an HTTP status code 409. {% /admonition %}
See Business Category for the list of valid firstLevelCategory and secondLevelCategory values.
Headers
Unique idempotency key for the request.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Request body
Example request
{
"businessName": "ABC Logistics Ltd",
"businessFreeFormDescription": "Biz free form desc",
"registrationNumber": "12144939",
"companyType": "LIMITED",
"companyRole": "OWNER",
"address": {
"addressFirstLine": "1 A road",
"city": "London",
"countryIso2Code": "gb",
"countryIso3Code": "gbr",
"postCode": "11111"
},
"externalCustomerId": "67890-biz-acct",
"actorEmail": "biz-acct@abcl.com",
"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",
"businessRepresentative": {
"firstName": "Oliver",
"lastName": "Wilson",
"preferredName": "Olivia",
"address": {
"addressFirstLine": "50 Sunflower Ave",
"city": "Phoenix",
"countryIso3Code": "usa",
"postCode": "10025",
"stateCode": "AZ"
},
"contactDetails": {
"email": "o.wilson@example.com",
"phoneNumber": "+3725064992"
},
"dateOfBirth": "1977-07-01"
}
}Response
Created business profile.