> ## 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 CoworkerTask

> Retrieve a single CoworkerTask record by its Id.

A **CoworkerTask** represents a to-do item that can be assigned to an admin user. Tasks help space managers and staff track daily operations such as onboarding steps, maintenance requests, or follow-ups.

Each task is linked to a customer (`CoworkerId`) and assigned to a responsible admin (`ResponsibleId`). The responsible admin receives a notification on the Admin Panel and can mark the task as completed once done.

Tasks can optionally be grouped into task lists (`TaskListName`). Task lists standardise and partially automate admin processes — for example, a series of onboarding tasks (access card handout, locker keys, welcome tour) each assigned to a different admin.

Use `NotifyByEmail` to send an email reminder to the responsible admin when the task is due. Use `DisplayToEveryone` to make the task visible to all admin users, not just the responsible one.

## 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 **`CoworkerTask-Read`** role.
</Note>

## Path Parameters

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

## Code Examples

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

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://spaces.nexudus.com/api/crm/coworkertasks/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/crm/coworkertasks/87654321',
      headers={
          'Authorization': 'Bearer YOUR_TOKEN'
      }
  )

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

## Response

### 200

<ResponseField name="BusinessId" type="integer">
  Business Id.
</ResponseField>

<ResponseField name="BusinessName" type="string">
  Location name.
</ResponseField>

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

<ResponseField name="CoworkerFullName" type="string">
  Customer full name.
</ResponseField>

<ResponseField name="CoworkerCompanyName" type="string">
  Customer company name.
</ResponseField>

<ResponseField name="CoworkerTeamNames" type="string">
  Customer team names.
</ResponseField>

<ResponseField name="Name" type="string">
  Task name.
</ResponseField>

<ResponseField name="Notes" type="string">
  Additional details or instructions for the task.
</ResponseField>

<ResponseField name="TaskListName" type="string">
  Name of the task list this task belongs to.
</ResponseField>

<ResponseField name="TaskItemUniqueId" type="string">
  Unique identifier of the task item within a task list.
</ResponseField>

<ResponseField name="FormPageRequestUniqueId" type="string">
  Unique identifier of the form page request that created this task.
</ResponseField>

<ResponseField name="Completed" type="boolean">
  Whether the task has been marked as completed.
</ResponseField>

<ResponseField name="DueDate" type="string">
  Due date for the task (UTC).
</ResponseField>

<ResponseField name="Reminded" type="boolean">
  Whether a reminder has been sent for this task.
</ResponseField>

<ResponseField name="ResponsibleId" type="integer">
  Responsible Id.
</ResponseField>

<ResponseField name="ResponsibleFullName" type="string">
  Responsible admin full name.
</ResponseField>

<ResponseField name="NotifyByEmail" type="boolean">
  Whether to notify the responsible admin by email when the task is due.
</ResponseField>

<ResponseField name="DisplayToEveryone" type="boolean">
  Whether the task is visible to all admin users.
</ResponseField>

<ResponseField name="DueDateLocal" type="string">
  Due date for the task in the location's local timezone.
</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}
{
  "BusinessId": 0,
  "BusinessName": null,
  "CoworkerId": 0,
  "CoworkerFullName": null,
  "CoworkerCompanyName": null,
  "CoworkerTeamNames": null,
  "Name": "",
  "Notes": null,
  "TaskListName": null,
  "TaskItemUniqueId": null,
  "FormPageRequestUniqueId": null,
  "Completed": false,
  "DueDate": null,
  "Reminded": false,
  "ResponsibleId": 0,
  "ResponsibleFullName": null,
  "NotifyByEmail": false,
  "DisplayToEveryone": false,
  "DueDateLocal": 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": "CoworkerTask Example",
  "LocalizationDetails": null,
  "CustomFields": null
}
```
