Integration ProviderTaskUserOther
Asana
ClickupTeam
ConfluencePages
DropboxURLs
Jira
Linear
Monday.comBoard Items
Todoist
Wrike

Don't see the integration provider or resource you want? Let us know and we will build it out ASAP!


Task: workspace-task

A task is details related to an assignment

{
  "title": {
    "title": "Title",
    "type": "string"
  },
  "description": {
    "title": "Description",
    "type": "string"
  },
  "status": {
    "enum": [
      "CLOSED",
      "IN_PROGRESS",
      "OPEN"
    ],
    "title": "Status",
    "type": "string"
  },
  "due_date": {
    "format": "date-time",
    "title": "Due Date",
    "type": "string"
  },
  "completed_date": {
    "format": "date-time",
    "title": "Completed Date",
    "type": "string"
  },
  "assignee_id": {
    "title": "Assignee ID",
    "type": "string",
    "description": "The unique identifier of the assignee (user) linked to the task."
  },
}
{
  "title": "Complete the API integration",
  "description": "Integrate the new API with the existing system",
  "status": "IN_PROGRESS",
  "due_date": "2000-01-01T 00:00:00",
  "completed_date": "2000-01-02T 00:00:00",
  "assignee_id": "[email protected]"
}

User: workspace-user

A user represents an individual user's information within a workspace.

{
  "first_name": {
    "title": "First Name",
    "type": "string"
  },
  "last_name": {
    "title": "Last Name",
    "type": "string"
  },
  "display_name": {
    "title": "Display Name",
    "type": "string"
  },
  "email": {
    "title": "Email",
    "type": "string",
    "format": "email",
  },        
}
{
  "first_name": "John",
  "last_name": "Doe",
  "display_name": "John Doe",
  "email": "[email protected]"
}