Skip to main content
GET
/
api
/
crm
/
taskitems
/
{id}
Get one TaskItem
curl --request GET \
  --url https://spaces.nexudus.com/api/crm/taskitems/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "TaskListId": 123,
  "ResponsibleId": 123,
  "ResponsibleFullName": "<string>",
  "Name": "<string>",
  "Active": true,
  "NotifyByEmail": true,
  "DisplayToEveryone": true,
  "DelayInHours": 123,
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
A TaskItem represents an individual task or to-do item that can be assigned to staff or customers. Tasks can be organised into lists, have due dates, and track completion status.

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 TaskItem-Read role.

Path Parameters

id
integer
required
The Id of the TaskItem record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/crm/taskitems/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

TaskListId
integer
ID of the task list linked to this record.
ResponsibleId
integer
ID of the responsible linked to this record.
ResponsibleFullName
string
Display name of the linked responsible full (read-only).
Name
string
The name value for this task item.
Active
boolean
Whether this task item is currently active.
NotifyByEmail
boolean
Whether notify by email is enabled.
DisplayToEveryone
boolean
Whether display to everyone is enabled.
DelayInHours
integer
The delay in hours value for this task item.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "TaskListId": 0,
  "ResponsibleId": 0,
  "ResponsibleFullName": null,
  "Name": "",
  "Active": false,
  "NotifyByEmail": false,
  "DisplayToEveryone": false,
  "DelayInHours": 0,
  "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": "TaskItem Example",
  "LocalizationDetails": null,
  "CustomFields": null
}