v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
profile

Update business directors

Overrides directors in the business profile.

Returns the list of all directors associated with the business profile.

put/v1/profiles/{profileId}/directors

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

firstNamestring

Director first name.

lastNamestring

Director last name.

dateOfBirthstring

Date of birth.

countryOfResidenceIso3Codestring

3 character country code.

Example request

[
  {
    "firstName": "John",
    "lastName": "Doe",
    "dateOfBirth": "1982-05-20",
    "countryOfResidenceIso3Code": "usa"
  }
]

Response

List of all directors associated with the business profile.

idinteger

ID of the director. Automatically set.

firstNamestring

Director first name.

lastNamestring

Director last name.

dateOfBirthstring

Date of birth.

countryOfResidenceIso3Codestring

3 character country code.

Example response

[
  {
    "id": 10,
    "firstName": "John",
    "lastName": "Doe",
    "dateOfBirth": "1982-05-20",
    "countryOfResidenceIso3Code": "usa"
  }
]