v1
latestOpenAPI 3.0.02026-07-2464438356.8 KBAssociated Persons
Upload attestations for an associated person
Upload one or more attestations for an associated person. Re-uploading an attestation type replaces the previous value. Only attestation types defined for associated persons (personal info, contact, residential address, tax info, identity document, and proof of address) are accepted here — business-level attestations belong on the compliance review endpoint.
put/api/compliance/{organizationId}/associated-persons/{associatedPersonId}/attestations
Path parameters
organizationIdstring uuid required
associatedPersonIdstring uuid required
Request body
Example request
{
"attestations": [
{
"name": {
"firstName": "John",
"lastName": "Doe",
"middleName": "Robert"
},
"birthDate": "1985-06-15",
"nationality": "US",
"jobTitle": "Chief Executive Officer",
"ownershipPercentage": 25
}
]
}Response
Associated person attestations uploaded successfully.
Example response
{
"attestations": [
{
"createdAt": "2026-02-24T12:00:00.000Z",
"validationStatus": {
"failures": [
{
"failureCode": "INCORRECT_DOCUMENT",
"severity": "BLOCKING"
}
]
}
}
]
}