Action Tracker
API Reference
Action

Action

Overview

This document outlines the attributes of an action object within Action Tracker. Each action represents a task or activity that needs to be tracked and managed.

Attributes

AttributeTypeRequiredQueryableDefaultExamplesDescription
idstringYesNo"53bf5e949af0728372729857"The unique identifier of an action.
titlestringYesYes"Fix the broken window"A simple, descriptive title for an action.
descriptionstringNoNonull"The window in the kitchen is broken. It needs to be fixed as soon as possible."An extended description for an action.
actionProducerobjectYesYesAn object representing the producer of the action.
locationobjectYesYesAn object representing the location related to the action.
dueAtstringYesYes"2023-10-12T01:49:42.000Z"The timestamp on which an action is due. ISO-8601 format.
prioritystringNoYes1The current priority of an action.
statusstringNoYes0The current status of an action.
initiatorstringNoNoAn object representing the user who initiated the action.
ownerstringNoYesAn object representing the owner of the action.
assigneestringNoYesAn object representing the user assigned to the action.
endorsedBystringNoNoAn array representing entities that endorsed the action.
attachmentsarrayNoNoAn array representing files attached to the action.
commentsarrayNoNoAn array representing comments made on the action.
tagsarrayNoYesAn array representing tags associated with the action.
metaobjectNoNoAn object representing additional metadata for the action.
createdAtstringNoYes"2023-10-12T01:49:42.000Z"The timestamp on which an action was created. ISO-8601 format.
updatedAtstringNoNo"2023-10-12T01:49:42.000Z"The timestamp on which an action was last updated. ISO-8601 format.

JSON representation

Here is a JSON representation of the actions resource.

{
  "id": "string",
  "title": "string",
  "description": "string",
  "actionProducer": {
    "name": "string",
    "url": "string",
    "reference": "string"
  },
  "location": {
    "businessUnit": "string",
    "site": "string",
    "department": "string",
    "workGroup": "string",
    "productiveUnit": "string",
    "team": "string",
    "crew": "string"
  },
  "dueAt": "string",
  "owner": "string",
  "assignee": "string",
  "priority": "string",
  "status": "string",
  "initiator": "string",
  "endorsedBy": "string",
  "attachments": "string[]",
  "comments": "[]",
  "tags": "string[]",
  "meta": {}
}