A CoworkerIdentityCheckDocument represents a document submitted as part of a CoworkerIdentityCheck for a customer. Each document record can hold up to three files, corresponding to different sides or aspects of the verification evidence:
| File slot | Field prefix | Purpose |
|---|
| Face photo | Photo | A photograph of the customer’s face |
| Front | Document | The front side of the identity or address document |
| Back | AdditionalDocument | The back side or a supplementary page of the document |
Which slots are required depends on the VerificationType and document type configured on the parent CoworkerIdentityCheck.
The VerificationStatus tracks the review state of this individual document through the same lifecycle used by CoworkerIdentityCheck: Pending → Submitted → Successful or Failed (or Cancelled).
Authentication
This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header.
The authenticated user must be a full unrestricted administrator or have the CoworkerIdentityCheckDocument-Read role.
Path Parameters
The Id of the CoworkerIdentityCheckDocument record to retrieve.
Code Examples
curl -X GET \
"https://spaces.nexudus.com/api/spaces/coworkeridentitycheckdocuments/87654321" \
-H "Authorization: Bearer YOUR_TOKEN"
Response
200
Full name of the customer this document belongs to.
Type of the customer (e.g. Member, TeamMember).
Company name of the customer.
Billing name of the customer.
Coworker Identity Check Id.
CoworkerIdentityCheckName
Name of the parent identity or address check.
CoworkerIdentityCheckVerificationType
Verification type of the parent check (IdDocument or Address).
CoworkerIdentityCheckBusinessName
Location (business) name from the parent check.
CoworkerIdentityCheckIdentityDocumentType
Identity document type from the parent check (e.g. Passport, DriversLicense).
CoworkerIdentityCheckIdentityDocumentNumber
Document number from the parent check.
CoworkerIdentityCheckIdentityDocumentIssuedBy
Issuing authority from the parent check.
CoworkerIdentityCheckIdentityDocumentExpirationDate
Document expiration date from the parent check.
CoworkerIdentityCheckAddressDocumentType
Address document type from the parent check (e.g. LeaseRentalAgreement, VoterCard).
Display name for this document record.
AdditionalDocumentFileName
Additional Document File Name.
New Additional Document Url.
ClearAdditionalDocumentFile
Clear Additional Document File.
Current review status of this document (Pending, Submitted, Successful, Failed, or Cancelled). See eIdVerificationStatus enum values: 0 = None, 1 = Pending, 2 = Submitted, 3 = Successful, 4 = Failed, 5 = Cancelled.
Free-text notes or reviewer comments about this document.
Unique record identifier.
Date and time the record was created (ISO 8601).
Date and time the record was last updated (ISO 8601).
Email of the user who last updated this record.
Whether the record was recently created.
External system identifier.
{
"CoworkerId": 0,
"CoworkerFullName": null,
"CoworkerCoworkerType": null,
"CoworkerCompanyName": null,
"CoworkerBillingName": null,
"CoworkerIdentityCheckId": 0,
"CoworkerIdentityCheckName": null,
"CoworkerIdentityCheckVerificationType": null,
"CoworkerIdentityCheckBusinessName": null,
"CoworkerIdentityCheckIdentityDocumentType": null,
"CoworkerIdentityCheckIdentityDocumentNumber": null,
"CoworkerIdentityCheckIdentityDocumentIssuedBy": null,
"CoworkerIdentityCheckIdentityDocumentExpirationDate": null,
"CoworkerIdentityCheckAddressDocumentType": null,
"Name": "",
"PhotoFileName": null,
"NewPhotoUrl": null,
"ClearPhotoFile": null,
"DocumentFileName": null,
"NewDocumentUrl": null,
"ClearDocumentFile": null,
"AdditionalDocumentFileName": null,
"NewAdditionalDocumentUrl": null,
"ClearAdditionalDocumentFile": null,
"VerificationStatus": 0,
"Notes": null,
"Id": 87654321,
"UpdatedOn": "2025-01-15T10:30:00Z",
"CreatedOn": "2025-01-10T08:00:00Z",
"UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"UpdatedBy": "admin@example.com",
"IsNew": false,
"SystemId": null,
"ToStringText": "CoworkerIdentityCheckDocument Example",
"LocalizationDetails": null,
"CustomFields": null
}