v1

latestOpenAPI 3.0.02026-07-2464438356.8 KB
Compliance

Upload attestations to a compliance review

Upload one or more attestations to a draft compliance review. Re-uploading an attestation type replaces the previous instance of that attestation type.

put/api/compliance/{organizationId}/reviews/{complianceReviewId}/attestations

Path parameters

organizationIdstring uuid required
complianceReviewIdstring uuid required

Request body

Example request

{
  "attestations": [
    {
      "name": {
        "firstName": "John",
        "lastName": "Doe",
        "middleName": "Robert"
      },
      "birthDate": "1990-01-15",
      "nationality": "US",
      "phoneNumber": "+14155551234",
      "residentialAddress": {
        "address1": "123 Main Street",
        "address2": "Suite 400",
        "city": "New York",
        "country": "US",
        "postalCode": "10001",
        "subDivision": "NY"
      }
    }
  ]
}

Response

Attestations uploaded successfully.

Example response

{
  "attestations": [
    {
      "createdAt": "2026-02-24T12:00:00.000Z",
      "validationStatus": {
        "failures": [
          {
            "failureCode": "INCORRECT_DOCUMENT",
            "severity": "BLOCKING"
          }
        ]
      }
    }
  ]
}