v1

latestOpenAPI 3.1.0UNLICENSED2026-07-2613101.1 MB
Onboarding

Update an associated person

Updates an associated person.

patch/applications/associated-people/{associatedPersonId}

Path parameters

associatedPersonIdstring uuid required

The ID of the associated person to work with.

Example:e9293471-5eb3-4dbc-916c-dbaf9e2deefd

Request body

firstNamestring
lastNamestring
dateOfBirthstring
emailAddressstring email nullable
phoneNumberstring nullable
nationalitiesstring[] nullable
taxIdstring nullable

Example request

{
  "firstName": "John",
  "lastName": "Smith",
  "dateOfBirth": "1990-01-01",
  "emailAddress": "john.smith@example.com",
  "phoneNumber": "+447798121212",
  "nationalities": [
    "GB"
  ],
  "taxId": "123-45-678",
  "address": {
    "streetName": "Upper Thames Street",
    "buildingNumber": "68",
    "buildingName": "Vintners Place",
    "postcode": "EC4V 3BJ",
    "city": "London",
    "region": "Greater London",
    "countryCode": "GB"
  }
}

Response

OK

idstring uuid nullable required

The ID of the associated person to work with.

firstNamestring required
lastNamestring required
dateOfBirthstring nullable required
emailAddressstring email nullable required
phoneNumberstring nullable required
nationalitiesstring[] nullable required
taxIdstring nullable required
createdAtstring date-time nullable required

The date the Resource was initially created. ISO 8601 format without milliseconds.

updatedAtstring date-time nullable required

The date the Resource was last modified. ISO 8601 format without milliseconds.

Example response

{
  "id": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
  "firstName": "John",
  "lastName": "Smith",
  "dateOfBirth": "1990-01-01",
  "emailAddress": "john.smith@example.com",
  "phoneNumber": "+447798121212",
  "nationalities": [
    "GB"
  ],
  "taxId": "123-45-678",
  "address": {
    "streetName": "Upper Thames Street",
    "buildingNumber": "68",
    "buildingName": "Vintners Place",
    "postcode": "EC4V 3BJ",
    "city": "London",
    "region": "Greater London",
    "countryCode": "GB"
  },
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}