> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one CoworkerIdentityCheckDocument

> Retrieve a single CoworkerIdentityCheckDocument record by its Id.

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

<Note>
  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.
</Note>

## Path Parameters

<ParamField path="id" type="integer" required>
  The Id of the CoworkerIdentityCheckDocument record to retrieve.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://spaces.nexudus.com/api/spaces/coworkeridentitycheckdocuments/87654321" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/spaces/coworkeridentitycheckdocuments/87654321',
    {
      headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
      }
    }
  );

  const record = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://spaces.nexudus.com/api/spaces/coworkeridentitycheckdocuments/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

  record = response.json()
  ```
</CodeGroup>

## Response

### 200

<ResponseField name="CoworkerId" type="integer">
  Coworker Id.
</ResponseField>

<ResponseField name="CoworkerFullName" type="string">
  Full name of the customer this document belongs to.
</ResponseField>

<ResponseField name="CoworkerCoworkerType" type="string">
  Type of the customer (e.g. Member, TeamMember).
</ResponseField>

<ResponseField name="CoworkerCompanyName" type="string">
  Company name of the customer.
</ResponseField>

<ResponseField name="CoworkerBillingName" type="string">
  Billing name of the customer.
</ResponseField>

<ResponseField name="CoworkerIdentityCheckId" type="integer">
  Coworker Identity Check Id.
</ResponseField>

<ResponseField name="CoworkerIdentityCheckName" type="string">
  Name of the parent identity or address check.
</ResponseField>

<ResponseField name="CoworkerIdentityCheckVerificationType" type="string">
  Verification type of the parent check (IdDocument or Address).
</ResponseField>

<ResponseField name="CoworkerIdentityCheckBusinessName" type="string">
  Location (business) name from the parent check.
</ResponseField>

<ResponseField name="CoworkerIdentityCheckIdentityDocumentType" type="string">
  Identity document type from the parent check (e.g. Passport, DriversLicense).
</ResponseField>

<ResponseField name="CoworkerIdentityCheckIdentityDocumentNumber" type="string">
  Document number from the parent check.
</ResponseField>

<ResponseField name="CoworkerIdentityCheckIdentityDocumentIssuedBy" type="string">
  Issuing authority from the parent check.
</ResponseField>

<ResponseField name="CoworkerIdentityCheckIdentityDocumentExpirationDate" type="string">
  Document expiration date from the parent check.
</ResponseField>

<ResponseField name="CoworkerIdentityCheckAddressDocumentType" type="string">
  Address document type from the parent check (e.g. LeaseRentalAgreement, VoterCard).
</ResponseField>

<ResponseField name="Name" type="string">
  Display name for this document record.
</ResponseField>

<ResponseField name="PhotoFileName" type="string">
  Photo File Name.
</ResponseField>

<ResponseField name="NewPhotoUrl" type="string">
  New Photo Url.
</ResponseField>

<ResponseField name="ClearPhotoFile" type="boolean">
  Clear Photo File.
</ResponseField>

<ResponseField name="DocumentFileName" type="string">
  Document File Name.
</ResponseField>

<ResponseField name="NewDocumentUrl" type="string">
  New Document Url.
</ResponseField>

<ResponseField name="ClearDocumentFile" type="boolean">
  Clear Document File.
</ResponseField>

<ResponseField name="AdditionalDocumentFileName" type="string">
  Additional Document File Name.
</ResponseField>

<ResponseField name="NewAdditionalDocumentUrl" type="string">
  New Additional Document Url.
</ResponseField>

<ResponseField name="ClearAdditionalDocumentFile" type="boolean">
  Clear Additional Document File.
</ResponseField>

<ResponseField name="VerificationStatus" type="integer">
  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.
</ResponseField>

<ResponseField name="Notes" type="string">
  Free-text notes or reviewer comments about this document.
</ResponseField>

<ResponseField name="Id" type="integer">
  Unique record identifier.
</ResponseField>

<ResponseField name="UniqueId" type="string">
  UUID of the record.
</ResponseField>

<ResponseField name="CreatedOn" type="string">
  Date and time the record was created (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedOn" type="string">
  Date and time the record was last updated (ISO 8601).
</ResponseField>

<ResponseField name="UpdatedBy" type="string">
  Email of the user who last updated this record.
</ResponseField>

<ResponseField name="IsNew" type="boolean">
  Whether the record was recently created.
</ResponseField>

<ResponseField name="SystemId" type="string">
  External system identifier.
</ResponseField>

```json Example Response theme={null}
{
  "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
}
```
