ClickUp

Project management and productivity platform

clickup.com/api ↗
Version
2.0
OpenAPI
3.0.3
Endpoints
126
Schemas
337
Updated
3 days ago
Productivity productivity project-management tasks
Use this API in your AI agent

Query structured spec data via REST or MCP. Get exactly what your agent needs.

Get API Key

Server URLs

https://api.clickup.com/api/v2
https://a00fb6e0-339c-4201-972f-503b9932d17a.remockly.com

Authentication

apiKey

Endpoints

Attachments 1 endpoints

POST /task/{task_id}/attachment

Upload a file to a task as an attachment. \ \ ***Note:** This request uses multipart/form-data as the content type.*

operationId: Attachments_uploadFileToTaskAsAttachment

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by its custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "multipart/form-data": {
      "schema": {
        "$ref": "#/components/schemas/AttachmentsUploadFileToTaskAsAttachmentRequest"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /task/{task_id}/attachment

Authorization 3 endpoints

POST /oauth/token

These are the routes for authing the API and going through the [OAuth flow](https://clickup.com/api).\ \ Applications utilizing a personal API token don't use this endpoint.\ \ ***Note:** OAuth tokens are not supported when using the [**Try It** feature](https://clickup.com/api) of our Reference docs. You can't try this endpoint from your web browser.*

operationId: Authorization_getAccessToken

Parameters

Name In Required Type Description
client_id query required string Oauth app client id
client_secret query required string Oauth app client secret
code query required string Code given in redirect url

Responses

200
POST /oauth/token
GET /user

View the details of the authenticated user's ClickUp account.

operationId: Authorization_viewAccountDetails

Responses

200
GET /user
GET /team

View the Workspaces available to the authenticated user.

operationId: Authorization_getWorkspaceList

Responses

200
GET /team

Comments 8 endpoints

DELETE /comment/{comment_id}

Delete a task comment.

operationId: Comments_deleteTaskComment

Parameters

Name In Required Type Description
comment_id path required number

Responses

200
DELETE /comment/{comment_id}
PUT /comment/{comment_id}

Replace the content of a task commment, assign a comment, and mark a comment as resolved.

operationId: Comments_updateTaskComment

Parameters

Name In Required Type Description
comment_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateCommentrequest"
      },
      "example": {
        "assignee": 183,
        "resolved": true,
        "comment_text": "Updated comment content"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /comment/{comment_id}
GET /list/{list_id}/comment

View the comments added to a List. \ \ If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments.\ \ Use the `start` and `start id` parameters of the oldest comment to retrieve the next 25 comments.

operationId: Comments_getListComments

Parameters

Name In Required Type Description
list_id path required number
start query optional integer Enter the `date` of a List info comment using Unix time in milliseconds.
start_id query optional string Enter the Comment `id` of a List info comment.

Responses

200
GET /list/{list_id}/comment
POST /list/{list_id}/comment

Add a comment to a List.

operationId: Comments_addToListComment

Parameters

Name In Required Type Description
list_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateListCommentrequest"
      },
      "example": {
        "assignee": 183,
        "notify_all": true,
        "comment_text": "List comment content"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /list/{list_id}/comment
GET /task/{task_id}/comment

View task comments. \ \ If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments.\ \ Use the `start` and `start id` parameters of the oldest comment to retrieve the next 25 comments.

operationId: Comments_getTaskComments

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.
start query optional integer Enter the `date` of a task comment using Unix time in milliseconds.
start_id query optional string Enter the Comment `id` of a task comment.

Responses

200
GET /task/{task_id}/comment
POST /task/{task_id}/comment

Add a new comment to a task.

operationId: Comments_createNewTaskComment

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateTaskCommentrequest"
      },
      "example": {
        "assignee": 183,
        "notify_all": true,
        "comment_text": "Task comment content"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /task/{task_id}/comment
GET /view/{view_id}/comment

View comments from a Chat view. \ \ If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments.\ \ Use the `start` and `start id` parameters of the oldest comment to retrieve the next 25 comments.

operationId: Comments_getViewComments

Parameters

Name In Required Type Description
view_id path required string 105 (string)
start query optional integer Enter the `date` of a Chat view comment using Unix time in milliseconds.
start_id query optional string Enter the Comment `id` of a Chat view comment.

Responses

200
GET /view/{view_id}/comment
POST /view/{view_id}/comment

Add a new comment to a Chat view.

operationId: Comments_createChatViewComment

Parameters

Name In Required Type Description
view_id path required string 105 (string)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateChatViewCommentrequest"
      },
      "example": {
        "notify_all": true,
        "comment_text": "View comment content"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /view/{view_id}/comment

Custom fields 3 endpoints

GET /list/{list_id}/field

View the Custom Fields available on tasks in a specific List.

operationId: CustomFields_getListFields

Parameters

Name In Required Type Description
list_id path required number

Responses

200
GET /list/{list_id}/field
DELETE /task/{task_id}/field/{field_id}

Remove the data from a Custom Field on a task. This does not delete the option from the Custom Field.

operationId: CustomFields_removeFieldValue

Parameters

Name In Required Type Description
task_id path required string
field_id path required string b8a8-48d8-a0c6-b4200788a683 (uuid)
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
DELETE /task/{task_id}/field/{field_id}
POST /task/{task_id}/field/{field_id}

Add data to a Custom field on a task. \ \ You'll need to know the `task_id` of the task you want to update, and the universal unique identifier (UUID) `field_id` of the Custom Field you want to set. \ \ You can use [Get Accessible Custom Fields](https://clickup.com/api) or the [Get Task](https://clickup.com/api) endpoint to find the `field_id`.

operationId: CustomFields_setFieldValue

Parameters

Name In Required Type Description
task_id path required string Enter the task ID of the task you want to update.
field_id path required string Enter the universal unique identifier (UUID) of the Custom Field you want to set.
custom_task_ids query optional boolean If you want to reference a task by its Custom Task ID, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/SetCustomFieldValuerequest"
      },
      "examples": {
        "URL Custom Field": {
          "value": {
            "value": "https://clickup.com/api"
          }
        },
        "Date Custom Field": {
          "value": {
            "value": 1667367645000,
            "value_options": {
              "time": true
            }
          }
        },
        "Email Custom Field": {
          "value": {
            "value": "user@company.com"
          }
        },
        "Label Custom Field": {
          "value": {
            "value": [
              "uuid1234",
              "uuid9876"
            ]
          }
        },
        "Money Custom Field": {
          "value": {
            "value": 8000
          }
        },
        "Phone Custom Field": {
          "value": {
            "value": "+1 201 555 0123"
          }
        },
        "Number Custom Field": {
          "value": {
            "value": -28
          }
        },
        "People Custom Field": {
          "value": {
            "value": {
              "add": [
                123,
                456
              ],
              "rem": [
                987,
                765
              ]
            }
          }
        },
        "Dropdown Custom Field": {
          "value": {
            "value": "uuid1234"
          }
        },
        "Location Custom Field": {
          "value": {
            "value": {
              "location": {
                "lat": -28.016667,
                "lng": 153.4
              },
              "formatted_address": "Gold Coast QLD, Australia"
            }
          }
        },
        "Emoji (Rating) Custom Field": {
          "value": {
            "value": 4
          }
        },
        "Manual Progress Custom Field": {
          "value": {
            "value": {
              "current": 20
            }
          }
        },
        "Task Relationship Custom Field": {
          "value": {
            "value": {
              "add": [
                "abcd1234",
                "efghi5678"
              ],
              "rem": [
                "jklm9876",
                "yuiop5678"
              ]
            }
          }
        },
        "Short or Long Text Custom Field": {
          "value": {
            "value": "This is short or long text in a Custom Field."
          }
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /task/{task_id}/field/{field_id}

Custom task types 1 endpoints

GET /team/{team_id}/custom_item

View the custom task types available in a Workspace.

operationId: CustomTaskTypes_getAvailableTaskTypes

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Responses

200
GET /team/{team_id}/custom_item

Folders 5 endpoints

DELETE /folder/{folder_id}

Delete a Folder from your Workspace.

operationId: Folders_removeFolder

Parameters

Name In Required Type Description
folder_id path required number

Responses

200
DELETE /folder/{folder_id}
GET /folder/{folder_id}

View the Lists within a Folder.

operationId: Folders_getFolderContent

Parameters

Name In Required Type Description
folder_id path required number

Responses

200
GET /folder/{folder_id}
PUT /folder/{folder_id}

Rename a Folder.

operationId: Folders_renameFolder

Parameters

Name In Required Type Description
folder_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateFolderrequest"
      },
      "example": {
        "name": "Updated Folder Name"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /folder/{folder_id}
GET /space/{space_id}/folder

View the Folders in a Space.

operationId: Folders_getContentsOf

Parameters

Name In Required Type Description
space_id path required number
archived query optional boolean

Responses

200
GET /space/{space_id}/folder
POST /space/{space_id}/folder

Add a new Folder to a Space.

operationId: Folders_createNewFolder

Parameters

Name In Required Type Description
space_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateFolderrequest"
      },
      "example": {
        "name": "New Folder Name"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /space/{space_id}/folder

Goals 8 endpoints

DELETE /goal/{goal_id}

Remove a Goal from your Workspace.

operationId: Goals_removeGoal

Parameters

Name In Required Type Description
goal_id path required string 900e-462d-a849-4a216b06d930 (uuid)

Responses

200
DELETE /goal/{goal_id}
GET /goal/{goal_id}

View the details of a Goal including its Targets.

operationId: Goals_getDetails

Parameters

Name In Required Type Description
goal_id path required string 900e-462d-a849-4a216b06d930 (uuid)

Responses

200
GET /goal/{goal_id}
PUT /goal/{goal_id}

Rename a Goal, set the due date, replace the description, add or remove owners, and set the Goal color.

operationId: Goals_updateGoalDetails

Parameters

Name In Required Type Description
goal_id path required string 900e-462d-a849-4a216b06d930 (uuid)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateGoalrequest"
      },
      "example": {
        "name": "Updated Goal Name",
        "color": "#32a852",
        "due_date": 1568036964079,
        "add_owners": [
          184
        ],
        "rem_owners": [
          183
        ],
        "description": "Updated Goal Description"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /goal/{goal_id}
POST /goal/{goal_id}/key_result

Add a Target to a Goal.

operationId: Goals_addKeyResult

Parameters

Name In Required Type Description
goal_id path required string 900e-462d-a849-4a216b06d930 (uuid)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateKeyResultrequest"
      },
      "example": {
        "name": "New Key Result Name",
        "type": "number",
        "unit": "km",
        "owners": [
          183
        ],
        "list_ids": [],
        "task_ids": [],
        "steps_end": 10,
        "steps_start": 0
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /goal/{goal_id}/key_result
DELETE /key_result/{key_result_id}

Delete a target from a Goal.

operationId: Goals_removeTarget

Parameters

Name In Required Type Description
key_result_id path required string 8480-49bc-8c57-e569747efe93 (uuid)

Responses

200
DELETE /key_result/{key_result_id}
PUT /key_result/{key_result_id}

Update a Target.

operationId: Goals_updateKeyResult

Parameters

Name In Required Type Description
key_result_id path required string 8480-49bc-8c57-e569747efe93 (uuid)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/EditKeyResultrequest"
      },
      "example": {
        "note": "Target achieved",
        "steps_current": 5
      }
    }
  },
  "required": true,
  "description": "All properties available in the Create Key Result endpoint may also be used along with the additional properties below."
}

Responses

200
PUT /key_result/{key_result_id}
GET /team/{team_id}/goal

View the Goals available in a Workspace.

operationId: Goals_getWorkspaceGoals

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
include_completed query optional boolean

Responses

200
GET /team/{team_id}/goal
POST /team/{team_id}/goal

Add a new Goal to a Workspace.

operationId: Goals_addNewGoalToWorkspace

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateGoalrequest"
      },
      "example": {
        "name": "Goal Name",
        "color": "#32a852",
        "owners": [
          183
        ],
        "due_date": 1568036964079,
        "description": "Goal Description",
        "multiple_owners": true
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /team/{team_id}/goal

Guests 10 endpoints

DELETE /folder/{folder_id}/guest/{guest_id}

Revoke a guest's access to a Folder. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_revokeAccessFromFolder

Parameters

Name In Required Type Description
folder_id path required number
guest_id path required number
include_shared query optional boolean Exclude details of items shared with the guest by setting this parameter to `false`. By default this parameter is set to `true`.

Responses

200
DELETE /folder/{folder_id}/guest/{guest_id}
POST /folder/{folder_id}/guest/{guest_id}

Share a Folder with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_addGuestToFolder

Parameters

Name In Required Type Description
folder_id path required number
guest_id path required number
include_shared query optional boolean Exclude details of items shared with the guest by setting this parameter to `false`. By default this parameter is set to `true`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/AddGuestToFolderrequest"
      },
      "example": {
        "permission_level": "read"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /folder/{folder_id}/guest/{guest_id}
DELETE /list/{list_id}/guest/{guest_id}

Revoke a guest's access to a List.\ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_removeFromList

Parameters

Name In Required Type Description
list_id path required number
guest_id path required number
include_shared query optional boolean Exclude details of items shared with the guest by setting this parameter to `false`. By default this parameter is set to `true`.

Responses

200
DELETE /list/{list_id}/guest/{guest_id}
POST /list/{list_id}/guest/{guest_id}

Share a List with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_shareListWith

Parameters

Name In Required Type Description
list_id path required number
guest_id path required number
include_shared query optional boolean Exclude details of items shared with the guest by setting this parameter to `false`. By default this parameter is set to `true`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/AddGuestToListrequest"
      },
      "example": {
        "permission_level": "read"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /list/{list_id}/guest/{guest_id}
DELETE /task/{task_id}/guest/{guest_id}

Revoke a guest's access to a task. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_revokeAccessToTask

Parameters

Name In Required Type Description
task_id path required string
guest_id path required number
include_shared query optional boolean Exclude details of items shared with the guest by setting this parameter to `false`. By default this parameter is set to `true`.
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
DELETE /task/{task_id}/guest/{guest_id}
POST /task/{task_id}/guest/{guest_id}

Share a task with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_addToTask

Parameters

Name In Required Type Description
task_id path required string
guest_id path required number
include_shared query optional boolean Exclude details of items shared with the guest by setting this parameter to `false`. By default this parameter is set to `true`.
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/AddGuestToTaskrequest"
      },
      "example": {
        "permission_level": "read"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /task/{task_id}/guest/{guest_id}
POST /team/{team_id}/guest

Invite a guest to join a Workspace. To invite a member to your Workspace, use the [Invite User to Workspace](https://clickup.com/api/clickupreference/operation/InviteUserToWorkspace/) endpoint. \ \ You'll also need to grant the guest access to specific items using the following endpoints: [Add Guest to Folder](clickupreference/operation/AddGuestToFolder/), [Add Guest to List](clickupreference/operation/AddGuestToList/), or [Add Guest to Task](clickupreference/operation/AddGuestToTask/). \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_inviteToWorkspace

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/InviteGuestToWorkspacerequest"
      },
      "example": {
        "email": "guest@example.com",
        "can_edit_tags": true,
        "custom_role_id": 12345,
        "can_create_views": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /team/{team_id}/guest
DELETE /team/{team_id}/guest/{guest_id}

Revoke a guest's access to a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_revokeGuestAccessToWorkspace

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
guest_id path required number

Responses

200
DELETE /team/{team_id}/guest/{guest_id}
GET /team/{team_id}/guest/{guest_id}

View information about a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_getGuestInformation

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
guest_id path required number

Responses

200
GET /team/{team_id}/guest/{guest_id}
PUT /team/{team_id}/guest/{guest_id}

Rename and configure options for a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Guests_editGuestOnWorkspace

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
guest_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/EditGuestOnWorkspacerequest"
      },
      "example": {
        "username": "Guest User",
        "can_edit_tags": true,
        "custom_role_id": 12345,
        "can_create_views": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /team/{team_id}/guest/{guest_id}

Lists 9 endpoints

GET /folder/{folder_id}/list

View the Lists within a Folder.

operationId: Lists_getFolderLists

Parameters

Name In Required Type Description
folder_id path required number
archived query optional boolean

Responses

200
GET /folder/{folder_id}/list
POST /folder/{folder_id}/list

Add a new List to a Folder.

operationId: Lists_addToFolder

Parameters

Name In Required Type Description
folder_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateListrequest"
      },
      "example": {
        "name": "New List Name",
        "status": "red",
        "content": "New List Content",
        "assignee": 183,
        "due_date": 1567780450202,
        "priority": 1,
        "due_date_time": false
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /folder/{folder_id}/list
DELETE /list/{list_id}

Delete a List from your Workspace.

operationId: Lists_removeList

Parameters

Name In Required Type Description
list_id path required number

Responses

200
DELETE /list/{list_id}
GET /list/{list_id}

View information about a List.

operationId: Lists_getListDetails

Parameters

Name In Required Type Description
list_id path required number

Responses

200
GET /list/{list_id}
PUT /list/{list_id}

Rename a List, update the List Info description, set a due date/time, set the List's priority, set an assignee, set or remove the List color.

operationId: Lists_updateListInfoDueDatePriorityAssigneeColor

Parameters

Name In Required Type Description
list_id path required string

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateListrequest"
      },
      "example": {
        "name": "Updated List Name",
        "status": "red",
        "content": "Updated List Content",
        "assignee": "none",
        "due_date": 1567780450202,
        "priority": 2,
        "unset_status": true,
        "due_date_time": true
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /list/{list_id}
DELETE /list/{list_id}/task/{task_id}

Remove a task from an additional List. You can't remove a task from its home List. \ \ ***Note:** This endpoint requires the [Tasks in Multiple List ClickApp](https://help.clickup.com/hc/en-us/articles/6309958824727-Tasks-in-Multiple-Lists) to be enabled.*

operationId: Lists_removeTaskFromList

Parameters

Name In Required Type Description
list_id path required number
task_id path required string

Responses

200
DELETE /list/{list_id}/task/{task_id}
POST /list/{list_id}/task/{task_id}

Add a task to an additional List. \ \ ***Note:** This endpoint requires the [Tasks in Multiple List ClickApp](https://help.clickup.com/hc/en-us/articles/6309958824727-Tasks-in-Multiple-Lists) to be enabled.*

operationId: Lists_addTaskToList

Parameters

Name In Required Type Description
list_id path required number
task_id path required string

Responses

200
POST /list/{list_id}/task/{task_id}
GET /space/{space_id}/list

View the Lists in a Space that aren't located in a Folder.

operationId: Lists_getFolderless

Parameters

Name In Required Type Description
space_id path required number
archived query optional boolean

Responses

200
GET /space/{space_id}/list
POST /space/{space_id}/list

Add a new List in a Space.

operationId: Lists_createFolderlessList

Parameters

Name In Required Type Description
space_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateFolderlessListrequest"
      },
      "example": {
        "name": "New List Name",
        "status": "red",
        "content": "New List Content",
        "assignee": 183,
        "due_date": 1567780450202,
        "priority": 1,
        "due_date_time": false
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /space/{space_id}/list

Members 2 endpoints

GET /list/{list_id}/member

View the people who have access to a List.

operationId: Members_getListUsers

Parameters

Name In Required Type Description
list_id path required number

Responses

200
GET /list/{list_id}/member
GET /task/{task_id}/member

View the people who have access to a task.

operationId: Members_getTaskAccess

Parameters

Name In Required Type Description
task_id path required string

Responses

200
GET /task/{task_id}/member

Roles 1 endpoints

GET /team/{team_id}/customroles

View the Custom Roles available in a Workspace.

operationId: Roles_listAvailableCustomRoles

Parameters

Name In Required Type Description
team_id path required number
include_members query optional boolean

Responses

200
GET /team/{team_id}/customroles

Shared hierarchy 1 endpoints

GET /team/{team_id}/shared

View the tasks, Lists, and Folders that have been shared with the authenticated user.

operationId: SharedHierarchy_viewTasksListsFolders

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Responses

200
GET /team/{team_id}/shared

Spaces 5 endpoints

DELETE /space/{space_id}

Delete a Space from your Workspace.

operationId: Spaces_removeSpace

Parameters

Name In Required Type Description
space_id path required number

Responses

200
DELETE /space/{space_id}
GET /space/{space_id}

View the Spaces available in a Workspace.

operationId: Spaces_getDetails

Parameters

Name In Required Type Description
space_id path required number

Responses

200
GET /space/{space_id}
PUT /space/{space_id}

Rename, set the Space color, and enable ClickApps for a Space.

operationId: Spaces_updateDetailsAndEnableClickApps

Parameters

Name In Required Type Description
space_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateSpacerequest"
      },
      "example": {
        "name": "Updated Space Name",
        "color": "#7B68EE",
        "private": false,
        "features": {
          "tags": {
            "enabled": false
          },
          "due_dates": {
            "enabled": false,
            "start_date": false,
            "remap_due_dates": false,
            "remap_closed_due_date": false
          },
          "checklists": {
            "enabled": true
          },
          "portfolios": {
            "enabled": false
          },
          "custom_fields": {
            "enabled": true
          },
          "time_tracking": {
            "enabled": false
          },
          "time_estimates": {
            "enabled": false
          },
          "dependency_warning": {
            "enabled": false
          },
          "remap_dependencies": {
            "enabled": false
          }
        },
        "admin_can_manage": false,
        "multiple_assignees": false
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /space/{space_id}
GET /team/{team_id}/space

View the Spaces avialable in a Workspace. You can only get member info in private Spaces.

operationId: Spaces_getSpaceDetails

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
archived query optional boolean

Responses

200
GET /team/{team_id}/space
POST /team/{team_id}/space

Add a new Space to a Workspace.

operationId: Spaces_addNewSpaceToWorkspace

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateSpacerequest"
      },
      "example": {
        "name": "New Space Name",
        "features": {
          "tags": {
            "enabled": true
          },
          "due_dates": {
            "enabled": true,
            "start_date": false,
            "remap_due_dates": true,
            "remap_closed_due_date": false
          },
          "checklists": {
            "enabled": true
          },
          "portfolios": {
            "enabled": true
          },
          "custom_fields": {
            "enabled": true
          },
          "time_tracking": {
            "enabled": false
          },
          "time_estimates": {
            "enabled": true
          },
          "dependency_warning": {
            "enabled": true
          },
          "remap_dependencies": {
            "enabled": true
          }
        },
        "multiple_assignees": true
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /team/{team_id}/space

Tags 6 endpoints

GET /space/{space_id}/tag

View the task Tags available in a Space.

operationId: Tags_getSpace

Parameters

Name In Required Type Description
space_id path required number

Responses

200
GET /space/{space_id}/tag
POST /space/{space_id}/tag

Add a new task Tag to a Space.

operationId: Tags_createSpaceTag

Parameters

Name In Required Type Description
space_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateSpaceTagrequest"
      },
      "example": {
        "tag": {
          "name": "Tag Name",
          "tag_bg": "#000000",
          "tag_fg": "#000000"
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /space/{space_id}/tag
DELETE /space/{space_id}/tag/{tag_name}

Delete a task Tag from a Space.

operationId: Tags_removeSpaceTag

Parameters

Name In Required Type Description
space_id path required number
tag_name path required string

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/DeleteSpaceTagrequest"
      },
      "example": {
        "tag": {
          "name": "Tag name",
          "tag_bg": "#000000",
          "tag_fg": "#000000"
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
DELETE /space/{space_id}/tag/{tag_name}
PUT /space/{space_id}/tag/{tag_name}

Update a task Tag.

operationId: Tags_updateSpaceTag

Parameters

Name In Required Type Description
space_id path required number
tag_name path required string

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/EditSpaceTagrequest"
      },
      "example": {
        "tag": {
          "name": "Tag name",
          "tag_bg": "#000000",
          "tag_fg": "#000000"
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /space/{space_id}/tag/{tag_name}
DELETE /task/{task_id}/tag/{tag_name}

Remove a Tag from a task. This does not delete the Tag from the Space.

operationId: Tags_removeFromTask

Parameters

Name In Required Type Description
task_id path required string
tag_name path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
DELETE /task/{task_id}/tag/{tag_name}
POST /task/{task_id}/tag/{tag_name}

Add a Tag to a task.

operationId: Tags_addToTask

Parameters

Name In Required Type Description
task_id path required string
tag_name path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
POST /task/{task_id}/tag/{tag_name}

Task checklists 6 endpoints

DELETE /checklist/{checklist_id}

Delete a checklist from a task.

operationId: TaskChecklists_removeChecklist

Parameters

Name In Required Type Description
checklist_id path required string b8a8-48d8-a0c6-b4200788a683 (uuid)

Responses

200
DELETE /checklist/{checklist_id}
PUT /checklist/{checklist_id}

Rename a task checklist, or reorder a checklist so it appears above or below other checklists on a task.

operationId: TaskChecklists_updateChecklist

Parameters

Name In Required Type Description
checklist_id path required string b8a8-48d8-a0c6-b4200788a683 (uuid)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/EditChecklistrequest"
      },
      "example": {
        "name": "Updated Checklist",
        "position": 1
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /checklist/{checklist_id}
POST /checklist/{checklist_id}/checklist_item

Add a line item to a task checklist.

operationId: TaskChecklists_addLineItem

Parameters

Name In Required Type Description
checklist_id path required string b8a8-48d8-a0c6-b4200788a683 (uuid)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateChecklistItemrequest"
      },
      "example": {
        "name": "Checklist Item",
        "assignee": 183
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /checklist/{checklist_id}/checklist_item
DELETE /checklist/{checklist_id}/checklist_item/{checklist_item_id}

Delete a line item from a task checklist.

operationId: TaskChecklists_removeChecklistItem

Parameters

Name In Required Type Description
checklist_id path required string b8a8-48d8-a0c6-b4200788a683 (uuid)
checklist_item_id path required string e491-47f5-9fd8-d1dc4cedcc6f (uuid)

Responses

200
DELETE /checklist/{checklist_id}/checklist_item/{checklist_item_id}
PUT /checklist/{checklist_id}/checklist_item/{checklist_item_id}

Update an individual line item in a task checklist. \ \ You can rename it, set the assignee, mark it as resolved, or nest it under another checklist item.

operationId: TaskChecklists_updateChecklistItem

Parameters

Name In Required Type Description
checklist_id path required string b8a8-48d8-a0c6-b4200788a683 (uuid)
checklist_item_id path required string e491-47f5-9fd8-d1dc4cedcc6f (uuid)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/EditChecklistItemrequest"
      },
      "example": {
        "name": "Updated Checklist Item",
        "parent": null,
        "assignee": null,
        "resolved": true
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /checklist/{checklist_id}/checklist_item/{checklist_item_id}
POST /task/{task_id}/checklist

Add a new checklist to a task.

operationId: TaskChecklists_createNewChecklist

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateChecklistrequest"
      },
      "example": {
        "name": "Checklist"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /task/{task_id}/checklist

Task relationships 4 endpoints

DELETE /task/{task_id}/dependency

Remove the dependency relationship between two or more tasks.

operationId: TaskRelationships_removeDependency

Parameters

Name In Required Type Description
task_id path required string
depends_on query required string
dependency_of query required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
DELETE /task/{task_id}/dependency
POST /task/{task_id}/dependency

Set a task as waiting on or blocking another task.

operationId: TaskRelationships_addDependency

Parameters

Name In Required Type Description
task_id path required string This is the task which is waiting on or blocking another task.
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`. For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/AddDependencyrequest"
      },
      "example": {
        "depends_on": "9hw"
      }
    }
  },
  "required": true,
  "description": "Use the `depends_on` parameter in the request body to specify the task that must be completed before the task in the path parameter.\\\n \\\nUse the `dependency_of` parameter in the request body to specify the task that's waiting for the task in the path parameter to be completed.\\\n \\\nYou can only use one per request."
}

Responses

200
POST /task/{task_id}/dependency
DELETE /task/{task_id}/link/{links_to}

Remove the link between two tasks.

operationId: TaskRelationships_removeLinkBetweenTasks

Parameters

Name In Required Type Description
task_id path required string
links_to path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
DELETE /task/{task_id}/link/{links_to}
POST /task/{task_id}/link/{links_to}

Link two tasks together.

operationId: TaskRelationships_linkTasks

Parameters

Name In Required Type Description
task_id path required string
links_to path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
POST /task/{task_id}/link/{links_to}

Task templates 2 endpoints

POST /list/{list_id}/taskTemplate/{template_id}

Create a new task using a task template.

operationId: TaskTemplates_createFromTemplate

Parameters

Name In Required Type Description
list_id path required number
template_id path required string

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateTaskFromTemplaterequest"
      },
      "example": {
        "name": "New task name"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /list/{list_id}/taskTemplate/{template_id}
GET /team/{team_id}/taskTemplate

View the task templates available in a Workspace.

operationId: TaskTemplates_getTemplates

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
page query required integer

Responses

200
GET /team/{team_id}/taskTemplate

Tasks 8 endpoints

GET /list/{list_id}/task

View the tasks in a List. Responses are limited to 100 tasks per page. You can only view task information of tasks you can access. \ \ This endpoint only includes tasks where the specified `list_id` is their home List. Tasks added to the `list_id` with a different home List are not included in the response.

operationId: Tasks_getListTasks

Parameters

Name In Required Type Description
list_id path required number To find the list_id:<br> 1. In the Sidebar, hover over the List and click the **ellipsis ...** menu.<br> 2. Select **Copy link.**<br> 3. Use the copied URL to find the list_id. The list_id is the number that follows /li in the URL.
archived query optional boolean
include_markdown_description query optional boolean To return task descriptions in Markdown format, use `?include_markdown_description=true`.
page query optional integer Page to fetch (starts at 0).
order_by query optional string Order by a particular field. By default, tasks are ordered by `created`.\ \ Options include: `id`, `created`, `updated`, and `due_date`.
reverse query optional boolean Tasks are displayed in reverse order.
subtasks query optional boolean Include or exclude subtasks. By default, subtasks are excluded.
statuses query optional array Filter by statuses. To include closed tasks, use the `include_closed` parameter. \ \ For example: \ \ `?statuses[]=to%20do&statuses[]=in%20progress`
include_closed query optional boolean Include or excluse closed tasks. By default, they are excluded.\ \ To include closed tasks, use `include_closed: true`.
assignees query optional array Filter by Assignees. For example: \ \ `?assignees[]=1234&assignees[]=5678`
watchers query optional array Filter by watchers.
tags query optional array Filter by tags. For example: \ \ `?tags[]=tag1&tags[]=this%20tag`
due_date_gt query optional integer Filter by due date greater than Unix time in milliseconds.
due_date_lt query optional integer Filter by due date less than Unix time in milliseconds.
date_created_gt query optional integer Filter by date created greater than Unix time in milliseconds.
date_created_lt query optional integer Filter by date created less than Unix time in milliseconds.
date_updated_gt query optional integer Filter by date updated greater than Unix time in milliseconds.
date_updated_lt query optional integer Filter by date updated less than Unix time in milliseconds.
date_done_gt query optional integer Filter by date done greater than Unix time in milliseconds.
date_done_lt query optional integer Filter by date done less than Unix time in milliseconds.
custom_fields query optional array Include tasks with specific values in multiple Custom Fields.\ \ For example: `?custom_fields=[{"field_id":"abcdefghi12345678","operator":"=","value":"1234"},{"field_id":"jklmnop123456","operator":"<","value":"5"}]`\ \ If you want to include tasks with specific values in only one Custom Field, use `custom_field` instead.\ \ Learn more about [filtering using Custom Fields.](https://clickup.com/api)
custom_items query optional array Filter by custom task types. For example: \ \ `?custom_items[]=0&custom_items[]=1300` \ \ Including `0` returns tasks. Including `1` returns Milestones. Including any other number returns the custom task type as defined in your Workspace.

Responses

200
GET /list/{list_id}/task
POST /list/{list_id}/task

Create a new task.

operationId: Tasks_createNewTask

Parameters

Name In Required Type Description
list_id path required number
custom_task_ids query optional boolean If you want to reference a task by its custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateTaskrequest"
      },
      "example": {
        "name": "New Task Name",
        "tags": [
          "tag name 1"
        ],
        "parent": null,
        "status": "Open",
        "due_date": 1508369194377,
        "links_to": null,
        "priority": 3,
        "assignees": [
          183
        ],
        "notify_all": true,
        "start_date": 1567780450202,
        "description": "New Task Description",
        "custom_fields": [
          {
            "id": "0a52c486-5f05-403b-b4fd-c512ff05131c",
            "value": "This is a string of text added to a Custom Field."
          }
        ],
        "due_date_time": false,
        "time_estimate": 8640000,
        "start_date_time": false,
        "markdown_description": "New Task Description",
        "check_required_custom_fields": true
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /list/{list_id}/task
GET /task/bulk_time_in_status/task_ids

View how long two or more tasks have been in each status. The Total time in Status ClickApp must first be enabled by the Workspace owner or an admin.

operationId: Tasks_getTimeInStatusBulk

Parameters

Name In Required Type Description
task_ids query required string Include this paramater once per `task_id`. You can include up to 100 task ids per request. For example: `task_ids=3cuh&task_ids=g4fs`
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
GET /task/bulk_time_in_status/task_ids
DELETE /task/{task_id}

Delete a task from your Workspace.

operationId: Tasks_removeTaskById

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by its custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
DELETE /task/{task_id}
GET /task/{task_id}

View information about a task. You can only view task information of tasks you can access. \ \ Tasks with attachments will return an "attachments" response.

operationId: Tasks_getTaskDetails

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by its custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.
include_subtasks query optional boolean Include subtasks, default false
include_markdown_description query optional boolean To return task descriptions in Markdown format, use `?include_markdown_description=true`.

Responses

200
GET /task/{task_id}
PUT /task/{task_id}

Update a task by including one or more fields in the request body.

operationId: Tasks_updateTaskFields

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by its custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateTaskrequest"
      },
      "example": {
        "name": "Updated Task Name",
        "parent": "abc1234",
        "status": "in progress",
        "archived": false,
        "due_date": 1508369194377,
        "priority": 1,
        "assignees": {
          "add": [
            182
          ],
          "rem": [
            183
          ]
        },
        "start_date": 1567780450202,
        "description": "Updated Task Content",
        "due_date_time": false,
        "time_estimate": 8640000,
        "start_date_time": false
      }
    }
  },
  "required": true,
  "description": "***Note:** To update Custom Fields on a task, you must use the Set Custom Field endpoint.*"
}

Responses

200
PUT /task/{task_id}
GET /task/{task_id}/time_in_status

View how long a task has been in each status. The Total time in Status ClickApp must first be enabled by the Workspace owner or an admin.

operationId: Tasks_getTimeInStatus

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
GET /task/{task_id}/time_in_status
GET /team/{team_Id}/task

View the tasks that meet specific criteria from a Workspace. Responses are limited to 100 tasks per page. \ \ You can only view task information of tasks you can access.

operationId: Tasks_filterTeamTasks

Parameters

Name In Required Type Description
team_Id path required number Team ID (Workspace)
page query optional integer Page to fetch (starts at 0).
order_by query optional string Order by a particular field. By default, tasks are ordered by `created`.\ \ Options include: `id`, `created`, `updated`, and `due_date`.
reverse query optional boolean Tasks are displayed in reverse order.
subtasks query optional boolean Include or exclude subtasks. By default, subtasks are excluded.
space_ids query optional array Filter by Spaces. For example: \ \ `?space_ids[]=1234&space_ids[]=6789`
project_ids query optional array Filter by Folders. For example: \ \ `?project_ids[]=1234&project_ids[]=6789`
list_ids query optional array Filter by Lists. For example: \ \ `?list_ids[]=1234&list_ids[]=6789`
statuses query optional array Filter by statuses. Use `%20` to represent a space character. To include closed tasks, use the `include_closed` parameter. \ \ For example: \ \ `?statuses[]=to%20do&statuses[]=in%20progress`
include_closed query optional boolean Include or excluse closed tasks. By default, they are excluded.\ \ To include closed tasks, use `include_closed: true`.
assignees query optional array Filter by Assignees using people's ClickUp user id. For example: \ \ `?assignees[]=1234&assignees[]=5678`
tags query optional array Filter by tags. User `%20` to represent a space character. For example: \ \ `?tags[]=tag1&tags[]=this%20tag`
due_date_gt query optional integer Filter by due date greater than Unix time in milliseconds.
due_date_lt query optional integer Filter by due date less than Unix time in milliseconds.
date_created_gt query optional integer Filter by date created greater than Unix time in milliseconds.
date_created_lt query optional integer Filter by date created less than Unix time in milliseconds.
date_updated_gt query optional integer Filter by date updated greater than Unix time in milliseconds.
date_updated_lt query optional integer Filter by date updated less than Unix time in milliseconds.
date_done_gt query optional integer Filter by date done greater than Unix time in milliseconds.
date_done_lt query optional integer Filter by date done less than Unix time in milliseconds.
custom_fields query optional array Include tasks with specific values in one or more Custom Fields.\ \ For example: `?custom_fields=[{"field_id":"abcdefghi12345678","operator":"=","value":"1234"}{"field_id":"jklmnop123456","operator":"<","value":"5"}]`\ \ Learn more about [filtering using Custom Fields.](https://clickup.com/api)
custom_task_ids query optional boolean If you want to reference a task by its custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.
parent query optional string Include the parent task ID to return subtasks.
include_markdown_description query optional boolean To return task descriptions in Markdown format, use `?include_markdown_description=true`.
custom_items query optional array Filter by custom task types. For example: \ \ `?custom_items[]=0&custom_items[]=1300` \ \ Including `0` returns tasks. Including `1` returns Milestones. Including any other number returns the custom task type as defined in your Workspace.

Responses

200
GET /team/{team_Id}/task

Teams - user groups 4 endpoints

GET /group

This endpoint is used to view [Teams: user groups](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) in your Workspace.\ \ In our API documentation, `team_id` refers to the id of a Workspace, and `group_id` refers to the id of a user group.

operationId: TeamsUserGroups_getUserGroups

Parameters

Name In Required Type Description
team_id query optional number Team ID (Workspace)
group_ids query optional string Enter one or more Team ids (user groups) to retrieve information about specific Teams.

Responses

200
GET /group
DELETE /group/{group_id}

This endpoint is used to remove a [Team: user group](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) from your Workspace.\ \ In our API documentation, `team_id` refers to the id of a Workspace, and `group_id` refers to the id of a user group.

operationId: TeamsUserGroups_removeGroup

Parameters

Name In Required Type Description
group_id path required string 7C73-4002-A6A9-310014852858 (string) - Team ID (user group)

Responses

200
DELETE /group/{group_id}
PUT /group/{group_id}

This endpoint is used to manage [Teams: user groups](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) which are groups of users you can assign items to in your Workspace.\ \ In our API documentation, `team_id` refers to the id of a Workspace, and `group_id` refers to the id of a user group.\ \ **Note:** Adding a guest with view only permissions to a Team automatically converts them to a paid guest.\ \ If you don't have any paid guest seats available, a new member seat is automatically added to increase the number of paid guest seats available.\ \ This incurs a prorated charge based on your billing cycle.

operationId: TeamsUserGroups_updateUserGroup

Parameters

Name In Required Type Description
group_id path required string 7C73-4002-A6A9-310014852858 (string) - Team ID (user group)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateTeamrequest"
      },
      "example": {
        "name": "New User Group Name",
        "handle": "newusergroupname",
        "members": {
          "add": [
            123456,
            987654
          ],
          "rem": [
            159753
          ]
        }
      }
    }
  },
  "required": true,
  "description": "You can update the team `handle` which is used to @mention a Team (user group) in your Workspace.\\\n \\\nAdd or remove members to and from a Team (user group) using the `\"add\"` and/or `\"rem\"` parameters and including an array of user ids."
}

Responses

200
PUT /group/{group_id}
POST /team/{team_id}/group

This endpoint is used to create [Teams: user groups](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) which are groups of users you can assign items to in your Workspace.\ \ In our API documentation, `team_id` refers to the id of a Workspace, and `group_id` refers to the id of a user group.\ \ **Note:** Adding a guest with view only permissions to a Team automatically converts them to a paid guest.\ \ If you don't have any paid guest seats available, a new member seat is automatically added to increase the number of paid guest seats available.\ \ This incurs a prorated charge based on your billing cycle.

operationId: TeamsUserGroups_createTeam

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateTeamrequest"
      },
      "example": {
        "name": "New team name",
        "members": [
          123456,
          987654
        ]
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /team/{team_id}/group

Teams - workspaces 2 endpoints

GET /team/{team_id}/plan

View the current [Plan](https://clickup.com/pricing) for the specified Workspace.

operationId: TeamsWorkspaces_getWorkspacePlan

Parameters

Name In Required Type Description
team_id path required string Team ID (Workspace)

Responses

200
GET /team/{team_id}/plan
GET /team/{team_id}/seats

View the used, total, and available member and guest seats for a Workspace.

operationId: TeamsWorkspaces_getWorkspaceSeats

Parameters

Name In Required Type Description
team_id path required string Team ID (Workspace)

Responses

200
GET /team/{team_id}/seats

Time tracking 13 endpoints

GET /team/{team_Id}/time_entries

View time entries filtered by start and end date. \ \ By default, this endpoint returns time entries from the last 30 days created by the authenticated user. \ \ To retrieve time entries for other users, you must include the `assignee` query parameter. \ \ Only one of the following location filters can be included at a time: `space_id`, `folder_id`, `list_id`, or `task_id`. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*

operationId: TimeTracking_getTimeEntriesWithinDateRange

Parameters

Name In Required Type Description
team_Id path required number Team ID (Workspace)
start_date query optional number Unix time in milliseconds
end_date query optional number Unix time in milliseconds
assignee query optional number Filter by `user_id`. For multiple assignees, separate `user_id` using commas.\ \ **Example:** `assignee=1234,9876`\ \ ***Note:** Only Workspace Owners/Admins have access to do this.*
include_task_tags query optional boolean Include task tags in the response for time entries associated with tasks.
include_location_names query optional boolean Include the names of the List, Folder, and Space along with the `list_id`,`folder_id`, and `space_id`.
space_id query optional number Only include time entries associated with tasks in a specific Space.
folder_id query optional number Only include time entries associated with tasks in a specific Folder.
list_id query optional number Only include time entries associated with tasks in a specific List.
task_id query optional string Only include time entries associated with a specific task.
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.
is_billable query optional boolean Include only billable time entries by using a value of `true` or only non-billable time entries by using a value of `false`.\ \ For example: `?is_billable=true`.

Responses

200 If your time entry is associated with a task that uses custom task ids you can expect a `custom_id`` field in the body of the response. The task field will only be included if there is a task associated with a time entry.
GET /team/{team_Id}/time_entries
POST /team/{team_Id}/time_entries

Create a time entry. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*

operationId: TimeTracking_createTimeEntry

Parameters

Name In Required Type Description
team_Id path required number Team ID (Workspace)
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/Createatimeentryrequest"
      },
      "example": {
        "tid": "task_id",
        "tags": [
          {
            "name": "name of tag",
            "tag_bg": "#BF55EC",
            "tag_fg": "#FFFFFF"
          }
        ],
        "start": 1595282645000,
        "assignee": 1,
        "billable": true,
        "duration": 50000,
        "description": "from api"
      }
    }
  },
  "required": true,
  "description": "Associate a time entry with a task using the `tid` parameter."
}

Responses

200
POST /team/{team_Id}/time_entries
POST /team/{team_Id}/time_entries/start

Start a timer for the authenticated user.

operationId: TimeTracking_startTimer

Parameters

Name In Required Type Description
team_Id path required number Team ID (Workspace)
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/StartatimeEntryrequest"
      },
      "example": {
        "tid": "task_id",
        "tags": [
          {
            "name": "tag1"
          }
        ],
        "billable": false,
        "description": "from api"
      }
    }
  },
  "required": true,
  "description": "For Workspaces on the Free Forever or Unlimited Plan, either the `timer_id` parameter or the `\"tid\"` field in the body of the request are required fields."
}

Responses

200
POST /team/{team_Id}/time_entries/start
GET /team/{team_id}/time_entries/current

View a time entry that's currently tracking time for the authenticated user. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*

operationId: TimeTracking_getCurrentTimeEntry

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
assignee query optional number user id

Responses

200
GET /team/{team_id}/time_entries/current
POST /team/{team_id}/time_entries/stop

Stop a timer that's currently running for the authenticated user.

operationId: TimeTracking_stopTimeEntry

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Responses

200
POST /team/{team_id}/time_entries/stop
DELETE /team/{team_id}/time_entries/tags

Remove labels from time entries. This does not remove the label from a Workspace.

operationId: TimeTracking_removeTagsFromTimeEntries

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/Removetagsfromtimeentriesrequest"
      },
      "example": {
        "tags": [
          {
            "name": "name of tag"
          }
        ],
        "time_entry_ids": [
          "timer_id"
        ]
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
DELETE /team/{team_id}/time_entries/tags
GET /team/{team_id}/time_entries/tags

View all the labels that have been applied to time entries in a Workspace.

operationId: TimeTracking_getAllTagsFromTimeEntries

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Responses

200
GET /team/{team_id}/time_entries/tags
POST /team/{team_id}/time_entries/tags

Add a label to a time entry.

operationId: TimeTracking_addTagsFromTimeEntries

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/Addtagsfromtimeentriesrequest"
      },
      "example": {
        "tags": [
          {
            "name": "name of tag",
            "tag_bg": "#BF55EC",
            "tag_fg": "#FFFFFF"
          }
        ],
        "time_entry_ids": [
          "timer_id"
        ]
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /team/{team_id}/time_entries/tags
PUT /team/{team_id}/time_entries/tags

Rename an time entry label.

operationId: TimeTracking_changeTagNames

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/Changetagnamesfromtimeentriesrequest"
      },
      "example": {
        "name": "old tag name",
        "tag_bg": "#000000",
        "tag_fg": "#000000",
        "new_name": "new tag name"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /team/{team_id}/time_entries/tags
DELETE /team/{team_id}/time_entries/{timer_id}

Delete a time entry from a Workspace.

operationId: TimeTracking_removeEntry

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
timer_id path required number Array of timer ids to delete separated by commas

Responses

200
DELETE /team/{team_id}/time_entries/{timer_id}
GET /team/{team_id}/time_entries/{timer_id}

View a single time entry. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*

operationId: TimeTracking_getSingleTimeEntry

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
timer_id path required string The ID of a time entry. \ \ This can be found using the [Get Time Entries Within a Date Range](https://clickup.com/api) endpoint.
include_task_ query optional boolean Include task in the response for time entries associated with tasks.
include_location_names query optional boolean Include the names of the List, Folder, and Space along with `list_id`,`folder_id`, and `space_id`.

Responses

200
GET /team/{team_id}/time_entries/{timer_id}
PUT /team/{team_id}/time_entries/{timer_id}

Update the details of a time entry.

operationId: TimeTracking_updateTimeEntryDetails

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
timer_id path required number
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the parameter is set to `custom_task_ids=true`\ \ For example: `custom_task_ids=true&team_id=123`

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateatimeEntryrequest"
      },
      "example": {
        "end": 1595289495842,
        "tid": "task_id",
        "tags": [
          {
            "name": "name of tag",
            "tag_bg": "#BF55EC",
            "tag_fg": "#FFFFFF"
          }
        ],
        "start": 1595289395842,
        "billable": true,
        "duration": 100000,
        "tag_action": "add",
        "description": ""
      }
    }
  },
  "required": true,
  "description": "Accessible tag actions are `[\"replace\", \"add\", \"remove\"]`"
}

Responses

200
PUT /team/{team_id}/time_entries/{timer_id}
GET /team/{team_id}/time_entries/{timer_id}/history

View a list of changes made to a time entry.

operationId: TimeTracking_getTimeEntryHistory

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
timer_id path required string The ID of a time entry. \ \ This can be found using the [Get Time Entries Within a Date Range](https://clickup.com/api/clickupreference/operation/Gettimeentrieswithinadaterange/) endpoint.

Responses

200
GET /team/{team_id}/time_entries/{timer_id}/history

Time tracking (legacy) 4 endpoints

GET /task/{task_id}/time

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*

operationId: TimeTrackingLegacy_getTrackedTime

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
GET /task/{task_id}/time
POST /task/{task_id}/time

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*

operationId: TimeTrackingLegacy_recordTimeForTask

Parameters

Name In Required Type Description
task_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/Tracktimerequest"
      },
      "example": {
        "end": 1508369194377,
        "time": 8640000,
        "start": 1567780450202
      }
    }
  },
  "required": true,
  "description": "Include the total time or the start time and end time.\\\n \\\nThe total time is in milliseconds and `\"start\"` and `\"end\"` values are Unix time in milliseconds."
}

Responses

200
POST /task/{task_id}/time
DELETE /task/{task_id}/time/{interval_id}

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*

operationId: TimeTrackingLegacy_removeTrackedTime

Parameters

Name In Required Type Description
task_id path required string
interval_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Responses

200
DELETE /task/{task_id}/time/{interval_id}
PUT /task/{task_id}/time/{interval_id}

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*

operationId: TimeTrackingLegacy_editTimeTracked

Parameters

Name In Required Type Description
task_id path required string
interval_id path required string
custom_task_ids query optional boolean If you want to reference a task by it's custom task id, this value must be `true`.
team_id query optional number Only used when the `custom_task_ids` parameter is set to `true`.\ \ For example: `custom_task_ids=true&team_id=123`.

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/Edittimetrackedrequest"
      },
      "example": {
        "end": 1508369194377,
        "time": 8640000,
        "start": 1567780450202
      }
    }
  },
  "required": true,
  "description": "Edit the start, end, or total time of a time tracked entry."
}

Responses

200
PUT /task/{task_id}/time/{interval_id}

Users 4 endpoints

POST /team/{team_id}/user

Invite someone to join your Workspace as a member. To invite someone as a guest, use the [Invite Guest](https://clickup.com/api/clickupreference/operation/InviteGuestToWorkspace/) endpoint.\ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Users_inviteUserToWorkspace

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/InviteUserToWorkspacerequest"
      },
      "example": {
        "admin": true,
        "email": "user@example.com"
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /team/{team_id}/user
DELETE /team/{team_id}/user/{user_id}

Deactivate a user from a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Users_deactivateFromWorkspace

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
user_id path required number

Responses

200
DELETE /team/{team_id}/user/{user_id}
GET /team/{team_id}/user/{user_id}

View information about a user in a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Users_getUserDetails

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
user_id path required number

Responses

200
GET /team/{team_id}/user/{user_id}
PUT /team/{team_id}/user/{user_id}

Update a user's name and role. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*

operationId: Users_updateUserDetails

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)
user_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/EditUserOnWorkspacerequest"
      },
      "example": {
        "admin": false,
        "username": "User Name",
        "custom_role_id": 998877
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /team/{team_id}/user/{user_id}

Views 12 endpoints

GET /folder/{folder_id}/view

View the task and page views available for a Folder.

operationId: Views_folderViewsGet

Parameters

Name In Required Type Description
folder_id path required number

Responses

200
GET /folder/{folder_id}/view
POST /folder/{folder_id}/view

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Folder.

operationId: Views_addViewToFolder

Parameters

Name In Required Type Description
folder_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateFolderViewrequest"
      },
      "example": {
        "name": "New Folder View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "columns": {
          "fields": [
            {
              "idx": 0,
              "name": null,
              "field": "assignee",
              "width": 160,
              "hidden": true,
              "display": null
            }
          ]
        },
        "filters": {
          "op": "AND",
          "fields": [
            {
              "op": "EQ",
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2",
              "values": "123",
              "determinor": null
            }
          ],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": [
            {
              "dir": -1,
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
            }
          ]
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /folder/{folder_id}/view
GET /list/{list_id}/view

View the task and page views available for a List.<br> Views and required views are separate responses.

operationId: Views_getListViews

Parameters

Name In Required Type Description
list_id path required number

Responses

200
GET /list/{list_id}/view
POST /list/{list_id}/view

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a List.

operationId: Views_addViewToList

Parameters

Name In Required Type Description
list_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateListViewrequest"
      },
      "example": {
        "name": "New List View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "columns": {
          "fields": [
            {
              "idx": 0,
              "name": null,
              "field": "assignee",
              "width": 160,
              "hidden": true,
              "display": null
            }
          ]
        },
        "filters": {
          "op": "AND",
          "fields": [
            {
              "op": "EQ",
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2",
              "values": "123",
              "determinor": null
            }
          ],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": [
            {
              "dir": -1,
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
            }
          ]
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /list/{list_id}/view
GET /space/{space_id}/view

View the task and page views available for a Space.

operationId: Views_spaceViewsGet

Parameters

Name In Required Type Description
space_id path required number

Responses

200
GET /space/{space_id}/view
POST /space/{space_id}/view

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Space.

operationId: Views_addViewToSpace

Parameters

Name In Required Type Description
space_id path required number

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateSpaceViewrequest"
      },
      "example": {
        "name": "New Space View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "columns": {
          "fields": [
            {
              "idx": 0,
              "name": null,
              "field": "assignee",
              "width": 160,
              "hidden": true,
              "display": null
            }
          ]
        },
        "filters": {
          "op": "AND",
          "fields": [
            {
              "op": "EQ",
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2",
              "values": "123",
              "determinor": null
            }
          ],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": [
            {
              "dir": -1,
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
            }
          ]
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /space/{space_id}/view
GET /team/{team_id}/view

View the task and page views available at the Everything Level of a Workspace.

operationId: Views_getEverythingLevel

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Responses

200
GET /team/{team_id}/view
POST /team/{team_id}/view

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view at the Everything Level of a Workspace.

operationId: Views_createWorkspaceViewEverythingLevel

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateTeamViewrequest"
      },
      "example": {
        "name": "New Everything level View",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "columns": {
          "fields": [
            {
              "idx": 0,
              "name": null,
              "field": "assignee",
              "width": 160,
              "hidden": true,
              "display": null
            }
          ]
        },
        "filters": {
          "op": "AND",
          "field": [
            {
              "op": "EQ",
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2",
              "values": "123",
              "determinor": null
            }
          ],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": [
            {
              "dir": -1,
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
            }
          ]
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
POST /team/{team_id}/view
DELETE /view/{view_id}
operationId: Views_deleteViewById

Parameters

Name In Required Type Description
view_id path required string 105 (string)

Responses

200
DELETE /view/{view_id}
GET /view/{view_id}

View information about a specific task or page view.

operationId: Views_getViewInfo

Parameters

Name In Required Type Description
view_id path required string

Responses

200
GET /view/{view_id}
PUT /view/{view_id}

Rename a view, update the grouping, sorting, filters, columns, and settings of a view.

operationId: Views_updateViewDetails

Parameters

Name In Required Type Description
view_id path required string

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateViewrequest"
      },
      "example": {
        "name": "New View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "512X",
          "type": 7
        },
        "columns": {
          "fields": [
            {
              "idx": 0,
              "name": null,
              "field": "assignee",
              "width": 160,
              "hidden": true,
              "display": null
            }
          ]
        },
        "filters": {
          "op": "AND",
          "fields": [
            {
              "op": "EQ",
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2",
              "values": "123",
              "determinor": null
            }
          ],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": [
            {
              "dir": -1,
              "idx": 0,
              "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
            }
          ]
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  },
  "required": true,
  "description": ""
}

Responses

200
PUT /view/{view_id}
GET /view/{view_id}/task

See all visible tasks in a view in ClickUp.

operationId: Views_getTasksInView

Parameters

Name In Required Type Description
view_id path required string 105 (string)
page query required integer

Responses

200
GET /view/{view_id}/task

Webhooks 4 endpoints

GET /team/{team_id}/webhook

View the webhooks created via the API for a Workspace. This endpoint returns webhooks created by the authenticated user.

operationId: Webhooks_workspaceGet

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Responses

200
GET /team/{team_id}/webhook
POST /team/{team_id}/webhook

Set up a webhook to monitor for events.<br> We do not have a dedicated IP address for webhooks. We use our domain name and dynamic addressing.

operationId: Webhooks_createWebhook

Parameters

Name In Required Type Description
team_id path required number Team ID (Workspace)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/CreateWebhookrequest"
      },
      "example": {
        "events": [
          "taskCreated",
          "taskUpdated",
          "taskDeleted",
          "taskPriorityUpdated",
          "taskStatusUpdated",
          "taskAssigneeUpdated",
          "taskDueDateUpdated",
          "taskTagUpdated",
          "taskMoved",
          "taskCommentPosted",
          "taskCommentUpdated",
          "taskTimeEstimateUpdated",
          "taskTimeTrackedUpdated",
          "listCreated",
          "listUpdated",
          "listDeleted",
          "folderCreated",
          "folderUpdated",
          "folderDeleted",
          "spaceCreated",
          "spaceUpdated",
          "spaceDeleted",
          "goalCreated",
          "goalUpdated",
          "goalDeleted",
          "keyResultCreated",
          "keyResultUpdated",
          "keyResultDeleted"
        ],
        "list_id": 9876,
        "task_id": "abc1234",
        "endpoint": "https://yourdomain.com/webhook",
        "space_id": 1234,
        "folder_id": 5678
      }
    }
  },
  "required": true,
  "description": "You can subscribe to specific events, and one specific location per webhook. [Learn more](https://clickup.com/api)."
}

Responses

200
POST /team/{team_id}/webhook
DELETE /webhook/{webhook_id}

Delete a webhook to stop monitoring the events and locations of the webhook.

operationId: Webhooks_removeWebhookById

Parameters

Name In Required Type Description
webhook_id path required string e506-4a29-9d42-26e504e3435e (uuid)

Responses

200
DELETE /webhook/{webhook_id}
PUT /webhook/{webhook_id}

Update a webhook to change the events to be monitored.

operationId: Webhooks_updateEventsToMonitor

Parameters

Name In Required Type Description
webhook_id path required string e506-4a29-9d42-26e504e3435e (uuid)

Request Body

{
  "content": {
    "application/json": {
      "schema": {
        "$ref": "#/components/schemas/UpdateWebhookrequest"
      },
      "example": {
        "events": "*",
        "status": "active",
        "endpoint": "https://yourdomain.com/webhook"
      }
    }
  },
  "required": true,
  "description": "To subscribe to specific events, pass an array of `events` that you want to subscribe to, or use the wildcard character `\"*\"` to subscribe to everything.\\\n \\\nIf you don't specify any events, all events will be sent to the webhook."
}

Responses

200
PUT /webhook/{webhook_id}

Schemas

object 20bbn28
{
  "type": "object",
  "title": "20bbn28",
  "example": {
    "current_status": {
      "color": "#d3d3d3",
      "status": "open",
      "total_time": {
        "since": "1604004420925",
        "by_minute": 21830
      }
    },
    "status_history": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "open",
        "orderindex": 0,
        "total_time": {
          "since": "1604004420925",
          "by_minute": 22276
        }
      },
      {
        "type": "custom",
        "color": "#5CF1D4",
        "status": "active status #2",
        "orderindex": 4,
        "total_time": {
          "since": "1601597828835",
          "by_minute": 40109
        }
      }
    ]
  },
  "required": [
    "current_status",
    "status_history"
  ],
  "properties": {
    "current_status": {
      "$ref": "#/components/schemas/CurrentStatus"
    },
    "status_history": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StatusHistory"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "current_status": {
        "color": "#d3d3d3",
        "status": "open",
        "total_time": {
          "since": "1604004420925",
          "by_minute": 21830
        }
      },
      "status_history": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "open",
          "orderindex": 0,
          "total_time": {
            "since": "1604004420925",
            "by_minute": 22276
          }
        },
        {
          "type": "custom",
          "color": "#5CF1D4",
          "status": "active status #2",
          "orderindex": 4,
          "total_time": {
            "since": "1601597828835",
            "by_minute": 40109
          }
        }
      ]
    }
  ]
}
object 27075wz
{
  "type": "object",
  "title": "27075wz",
  "example": {
    "current_status": {
      "color": "#d3d3d3",
      "status": "open",
      "total_time": {
        "since": "1604004423494",
        "by_minute": 21830
      }
    },
    "status_history": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "open",
        "orderindex": 0,
        "total_time": {
          "since": "1604004423494",
          "by_minute": 21829
        }
      },
      {
        "type": "custom",
        "color": "#5CF1D4",
        "status": "active status #2",
        "orderindex": 4,
        "total_time": {
          "since": "1602607941692",
          "by_minute": 23274
        }
      }
    ]
  },
  "required": [
    "current_status",
    "status_history"
  ],
  "properties": {
    "current_status": {
      "$ref": "#/components/schemas/CurrentStatus"
    },
    "status_history": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StatusHistory"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "current_status": {
        "color": "#d3d3d3",
        "status": "open",
        "total_time": {
          "since": "1604004423494",
          "by_minute": 21830
        }
      },
      "status_history": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "open",
          "orderindex": 0,
          "total_time": {
            "since": "1604004423494",
            "by_minute": 21829
          }
        },
        {
          "type": "custom",
          "color": "#5CF1D4",
          "status": "active status #2",
          "orderindex": 4,
          "total_time": {
            "since": "1602607941692",
            "by_minute": 23274
          }
        }
      ]
    }
  ]
}
object AddDependencyrequest
{
  "type": "object",
  "title": "AddDependencyrequest",
  "example": {
    "depends_on": "9hw"
  },
  "properties": {
    "depends_on": {
      "type": "string"
    },
    "depedency_of": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "depends_on": "9hw"
    }
  ]
}
object AddGuestToFolderrequest
{
  "type": "object",
  "title": "AddGuestToFolderrequest",
  "example": {
    "permission_level": "read"
  },
  "required": [
    "permission_level"
  ],
  "properties": {
    "permission_level": {
      "type": "string",
      "description": "Can be `read` (view only), `comment`, `edit`, or `create` (full)."
    }
  },
  "x-examples": [
    {
      "permission_level": "read"
    }
  ]
}
object AddGuestToFolderresponse
{
  "type": "object",
  "title": "AddGuestToFolderresponse",
  "example": {
    "guest": {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": [
          {
            "id": "1057X",
            "name": "Folder Name",
            "lists": [],
            "hidden": false,
            "archived": false,
            "statuses": [
              {
                "type": "open",
                "color": "#d3d3d3",
                "status": "Open",
                "orderindex": 0
              },
              {
                "type": "closed",
                "color": "#6bc950",
                "status": "Closed",
                "orderindex": 5
              }
            ],
            "orderindex": 5,
            "task_count": "20",
            "permission_level": "read",
            "override_statuses": true
          }
        ]
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  },
  "required": [
    "guest"
  ],
  "properties": {
    "guest": {
      "$ref": "#/components/schemas/Guest5"
    }
  },
  "x-examples": [
    {
      "guest": {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [],
          "folders": [
            {
              "id": "1057X",
              "name": "Folder Name",
              "lists": [],
              "hidden": false,
              "archived": false,
              "statuses": [
                {
                  "type": "open",
                  "color": "#d3d3d3",
                  "status": "Open",
                  "orderindex": 0
                },
                {
                  "type": "closed",
                  "color": "#6bc950",
                  "status": "Closed",
                  "orderindex": 5
                }
              ],
              "orderindex": 5,
              "task_count": "20",
              "permission_level": "read",
              "override_statuses": true
            }
          ]
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  ]
}
object AddGuestToListrequest
{
  "type": "object",
  "title": "AddGuestToListrequest",
  "example": {
    "permission_level": "read"
  },
  "required": [
    "permission_level"
  ],
  "properties": {
    "permission_level": {
      "type": "string",
      "description": "Can be `read` (view only), `comment`, `edit`, or `create` (full)."
    }
  },
  "x-examples": [
    {
      "permission_level": "read"
    }
  ]
}
object AddGuestToListresponse
{
  "type": "object",
  "title": "AddGuestToListresponse",
  "example": {
    "guest": {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [
          {
            "id": "1427X",
            "name": "List Name",
            "status": null,
            "archived": false,
            "assignee": null,
            "due_date": null,
            "priority": null,
            "statuses": [
              {
                "type": "open",
                "color": "#d3d3d3",
                "status": "Open",
                "orderindex": 0
              },
              {
                "type": "closed",
                "color": "#6bc950",
                "status": "Closed",
                "orderindex": 5
              }
            ],
            "orderindex": 1,
            "start_date": null,
            "task_count": "5",
            "permission_level": "read",
            "override_statuses": true
          }
        ],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  },
  "required": [
    "guest"
  ],
  "properties": {
    "guest": {
      "$ref": "#/components/schemas/Guest3"
    }
  },
  "x-examples": [
    {
      "guest": {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [
            {
              "id": "1427X",
              "name": "List Name",
              "status": null,
              "archived": false,
              "assignee": null,
              "due_date": null,
              "priority": null,
              "statuses": [
                {
                  "type": "open",
                  "color": "#d3d3d3",
                  "status": "Open",
                  "orderindex": 0
                },
                {
                  "type": "closed",
                  "color": "#6bc950",
                  "status": "Closed",
                  "orderindex": 5
                }
              ],
              "orderindex": 1,
              "start_date": null,
              "task_count": "5",
              "permission_level": "read",
              "override_statuses": true
            }
          ],
          "tasks": [],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  ]
}
object AddGuestToTaskrequest
{
  "type": "object",
  "title": "AddGuestToTaskrequest",
  "example": {
    "permission_level": "read"
  },
  "required": [
    "permission_level"
  ],
  "properties": {
    "permission_level": {
      "type": "string",
      "description": "Can be `read` (view only), `comment`, `edit`, or `create` (full)."
    }
  },
  "x-examples": [
    {
      "permission_level": "read"
    }
  ]
}
object AddGuestToTaskresponse
{
  "type": "object",
  "title": "AddGuestToTaskresponse",
  "example": {
    "guest": {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [
          {
            "id": "c04X",
            "url": "https://app.clickup.com/t/c04",
            "list": {
              "id": "1752X",
              "name": "Shared with me",
              "access": false
            },
            "name": "Task Name",
            "tags": [],
            "space": {
              "id": "380X"
            },
            "folder": {
              "id": "1217X",
              "name": "Shared with me",
              "access": false,
              "hidden": false
            },
            "parent": null,
            "points": null,
            "status": {
              "type": "open",
              "color": "#d3d3d3",
              "status": "Open",
              "orderindex": 0
            },
            "creator": {
              "id": 183,
              "color": "#827718",
              "username": "Jerry",
              "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
            },
            "team_id": "108",
            "archived": false,
            "due_date": "1508369194377",
            "priority": {
              "id": "1X",
              "color": "#f50000",
              "priority": "urgent",
              "orderindex": "1"
            },
            "assignees": [],
            "checklists": [],
            "orderindex": "0",
            "start_date": null,
            "date_closed": null,
            "date_created": "1574718405408",
            "date_updated": "1574722145869",
            "dependencies": [],
            "custom_fields": [],
            "time_estimate": null,
            "permission_level": "read"
          }
        ],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  },
  "required": [
    "guest"
  ],
  "properties": {
    "guest": {
      "$ref": "#/components/schemas/Guest1"
    }
  },
  "x-examples": [
    {
      "guest": {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [
            {
              "id": "c04X",
              "url": "https://app.clickup.com/t/c04",
              "list": {
                "id": "1752X",
                "name": "Shared with me",
                "access": false
              },
              "name": "Task Name",
              "tags": [],
              "space": {
                "id": "380X"
              },
              "folder": {
                "id": "1217X",
                "name": "Shared with me",
                "access": false,
                "hidden": false
              },
              "parent": null,
              "points": null,
              "status": {
                "type": "open",
                "color": "#d3d3d3",
                "status": "Open",
                "orderindex": 0
              },
              "creator": {
                "id": 183,
                "color": "#827718",
                "username": "Jerry",
                "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
              },
              "team_id": "108",
              "archived": false,
              "due_date": "1508369194377",
              "priority": {
                "id": "1X",
                "color": "#f50000",
                "priority": "urgent",
                "orderindex": "1"
              },
              "assignees": [],
              "checklists": [],
              "orderindex": "0",
              "start_date": null,
              "date_closed": null,
              "date_created": "1574718405408",
              "date_updated": "1574722145869",
              "dependencies": [],
              "custom_fields": [],
              "time_estimate": null,
              "permission_level": "read"
            }
          ],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  ]
}
object AddTaskLinkresponse
{
  "type": "object",
  "title": "AddTaskLinkresponse",
  "example": {
    "task": {
      "id": "9hvX",
      "url": "https://app.clickup.com/t/9hx",
      "list": {
        "id": "123X"
      },
      "name": "Task Name",
      "tags": [],
      "space": {
        "id": "789X"
      },
      "folder": {
        "id": "456X"
      },
      "parent": null,
      "status": {
        "type": "custom",
        "color": "#d3d3d3",
        "status": "in progress",
        "orderindex": 1
      },
      "creator": {
        "id": 183,
        "color": "#827718",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "due_date": null,
      "priority": null,
      "assignees": [],
      "checklists": [],
      "orderindex": "1.00000000000000000000000000000000",
      "start_date": null,
      "time_spent": null,
      "date_closed": null,
      "date_created": "1567780450202",
      "date_updated": "1567780450202",
      "linked_tasks": [
        {
          "userid": "183",
          "link_id": "9hz",
          "task_id": "9hv",
          "date_created": "1587571108988"
        }
      ],
      "time_estimate": null
    }
  },
  "required": [
    "task"
  ],
  "properties": {
    "task": {
      "$ref": "#/components/schemas/Task"
    }
  },
  "x-examples": [
    {
      "task": {
        "id": "9hvX",
        "url": "https://app.clickup.com/t/9hx",
        "list": {
          "id": "123X"
        },
        "name": "Task Name",
        "tags": [],
        "space": {
          "id": "789X"
        },
        "folder": {
          "id": "456X"
        },
        "parent": null,
        "status": {
          "type": "custom",
          "color": "#d3d3d3",
          "status": "in progress",
          "orderindex": 1
        },
        "creator": {
          "id": 183,
          "color": "#827718",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "due_date": null,
        "priority": null,
        "assignees": [],
        "checklists": [],
        "orderindex": "1.00000000000000000000000000000000",
        "start_date": null,
        "time_spent": null,
        "date_closed": null,
        "date_created": "1567780450202",
        "date_updated": "1567780450202",
        "linked_tasks": [
          {
            "userid": "183",
            "link_id": "9hz",
            "task_id": "9hv",
            "date_created": "1587571108988"
          }
        ],
        "time_estimate": null
      }
    }
  ]
}
object Addtagsfromtimeentriesrequest
{
  "type": "object",
  "title": "Addtagsfromtimeentriesrequest",
  "example": {
    "tags": [
      {
        "name": "name of tag",
        "tag_bg": "#BF55EC",
        "tag_fg": "#FFFFFF"
      }
    ],
    "time_entry_ids": [
      "timer_id"
    ]
  },
  "required": [
    "time_entry_ids",
    "tags"
  ],
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags6"
      },
      "description": ""
    },
    "time_entry_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "tags": [
        {
          "name": "name of tag",
          "tag_bg": "#BF55EC",
          "tag_fg": "#FFFFFF"
        }
      ],
      "time_entry_ids": [
        "timer_id"
      ]
    }
  ]
}
object AssignedBy
{
  "type": "object",
  "title": "AssignedBy",
  "example": {
    "id": 183,
    "color": "#827718",
    "email": "johndoe@gmail.com",
    "initials": "JD",
    "username": "John Doe",
    "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
  },
  "required": [
    "id",
    "username",
    "initials",
    "email",
    "color",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#827718",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    }
  ]
}
object Assignee
{
  "type": "object",
  "title": "Assignee",
  "example": {
    "id": 183,
    "color": "#827718",
    "email": "example@email.com",
    "initials": "JD",
    "username": "John Doe",
    "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "initials",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#827718",
      "email": "example@email.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
    }
  ]
}
object Assignee3
{
  "type": "object",
  "title": "Assignee3",
  "example": {
    "id": 183,
    "color": "#827718",
    "initials": "J",
    "username": "Jerry",
    "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
  },
  "required": [
    "id",
    "color",
    "username",
    "initials",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#827718",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    }
  ]
}
object Assignees
{
  "type": "object",
  "title": "Assignees",
  "example": {
    "add": [
      182
    ],
    "rem": [
      183
    ]
  },
  "required": [
    "add",
    "rem"
  ],
  "properties": {
    "add": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    },
    "rem": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "add": [
        182
      ],
      "rem": [
        183
      ]
    }
  ]
}
object Assignees1
{
  "type": "object",
  "title": "Assignees1",
  "example": {
    "id": 123,
    "color": "#000000",
    "email": "johndoe@website.com",
    "username": "John Doe",
    "profilePicture": "https://clickup.com/avatar.jpg"
  },
  "required": [
    "id",
    "username",
    "color",
    "email",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 123,
      "color": "#000000",
      "email": "johndoe@website.com",
      "username": "John Doe",
      "profilePicture": "https://clickup.com/avatar.jpg"
    }
  ]
}
object Attachment
{
  "type": "object",
  "title": "Attachment",
  "example": {
    "id": "62447c77-2086-4cda-b274-f53eccf0547b.csv",
    "url": "https://t6931406.p.clickup-attachments.com/t6931406/62447c77-2086-4cda-b274-f53eccf0547b/Canny%20-%20Exported%20posts%20-%202024-03-09.csv",
    "date": 1711570108374,
    "size": 140970,
    "type": 1,
    "user": [
      {
        "id": [
          {
            "type": "integer",
            "contentEncoding": "int32"
          }
        ],
        "color": {
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "initials": {
          "type": "string"
        },
        "username": {
          "type": "string"
        },
        "profilePicture": {
          "type": "string"
        }
      }
    ],
    "title": "Canny - Exported posts - 2024-03-09.csv",
    "hidden": false,
    "source": 1,
    "deleted": false,
    "version": 0,
    "mimetype": "text/csv",
    "extension": "csv",
    "is_folder": null,
    "parent_id": "36fjfqy",
    "email_data": null,
    "url_w_host": "https://t6931406.p.clickup-attachments.com/t6931406/62447c77-2086-4cda-b274-f53eccf0547b/Canny%20-%20Exported%20posts%20-%202024-03-09.csv",
    "orientation": null,
    "url_w_query": "https://t6931406.p.clickup-attachments.com/t6931406/62447c77-2086-4cda-b274-f53eccf0547b/Canny%20-%20Exported%20posts%20-%202024-03-09.csv?view=open",
    "total_comments": 0,
    "thumbnail_large": null,
    "thumbnail_small": null,
    "thumbnail_medium": null,
    "resolved_comments": 0
  },
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "date": {
      "type": "bigint"
    },
    "size": {
      "type": "bigint"
    },
    "type": {
      "type": "int"
    },
    "user": {
      "$ref": "#/components/schemas/User2",
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "hidden": {
      "type": "boolean"
    },
    "source": {
      "type": "int"
    },
    "deleted": {
      "type": "boolean"
    },
    "version": {
      "type": "int"
    },
    "mimetype": {
      "type": "string"
    },
    "extension": {
      "type": "string"
    },
    "is_folder": {
      "type": "boolean"
    },
    "parent_id": {
      "type": "string"
    },
    "email_data": {
      "type": "object"
    },
    "url_w_host": {
      "type": "string"
    },
    "orientation": {
      "type": "string"
    },
    "url_w_query": {
      "type": "string"
    },
    "total_comments": {
      "type": "int"
    },
    "thumbnail_large": {
      "type": "string"
    },
    "thumbnail_small": {
      "type": "string"
    },
    "thumbnail_medium": {
      "type": "string"
    },
    "resolved_comments": {
      "type": "int"
    }
  },
  "x-examples": [
    {
      "id": "62447c77-2086-4cda-b274-f53eccf0547b.csv",
      "url": "https://t6931406.p.clickup-attachments.com/t6931406/62447c77-2086-4cda-b274-f53eccf0547b/Canny%20-%20Exported%20posts%20-%202024-03-09.csv",
      "date": 1711570108374,
      "size": 140970,
      "type": 1,
      "user": [
        {
          "id": [
            {
              "type": "integer",
              "contentEncoding": "int32"
            }
          ],
          "color": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "initials": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "profilePicture": {
            "type": "string"
          }
        }
      ],
      "title": "Canny - Exported posts - 2024-03-09.csv",
      "hidden": false,
      "source": 1,
      "deleted": false,
      "version": 0,
      "mimetype": "text/csv",
      "extension": "csv",
      "is_folder": null,
      "parent_id": "36fjfqy",
      "email_data": null,
      "url_w_host": "https://t6931406.p.clickup-attachments.com/t6931406/62447c77-2086-4cda-b274-f53eccf0547b/Canny%20-%20Exported%20posts%20-%202024-03-09.csv",
      "orientation": null,
      "url_w_query": "https://t6931406.p.clickup-attachments.com/t6931406/62447c77-2086-4cda-b274-f53eccf0547b/Canny%20-%20Exported%20posts%20-%202024-03-09.csv?view=open",
      "total_comments": 0,
      "thumbnail_large": null,
      "thumbnail_small": null,
      "thumbnail_medium": null,
      "resolved_comments": 0
    }
  ]
}
object AttachmentsUploadFileToTaskAsAttachmentRequest
{
  "properties": {
    "attachment": {
      "type": "array",
      "items": {}
    }
  }
}
object Avatar
{
  "type": "object",
  "title": "Avatar",
  "example": {
    "icon": null,
    "color": null,
    "source": null,
    "attachment_id": null
  },
  "required": [
    "attachment_id",
    "color",
    "source",
    "icon"
  ],
  "properties": {
    "icon": {
      "type": [
        "string",
        "null"
      ]
    },
    "color": {
      "type": [
        "string",
        "null"
      ]
    },
    "source": {
      "type": [
        "string",
        "null"
      ]
    },
    "attachment_id": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "icon": null,
      "color": null,
      "source": null,
      "attachment_id": null
    }
  ]
}
object Changetagnamesfromtimeentriesrequest
{
  "type": "object",
  "title": "Changetagnamesfromtimeentriesrequest",
  "example": {
    "name": "old tag name",
    "tag_bg": "#000000",
    "tag_fg": "#000000",
    "new_name": "new tag name"
  },
  "required": [
    "name",
    "new_name",
    "tag_bg",
    "tag_fg"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "tag_bg": {
      "type": "string"
    },
    "tag_fg": {
      "type": "string"
    },
    "new_name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "old tag name",
      "tag_bg": "#000000",
      "tag_fg": "#000000",
      "new_name": "new tag name"
    }
  ]
}
object Checklist
{
  "type": "object",
  "title": "Checklist",
  "example": {
    "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
    "name": "Checklist",
    "items": [],
    "task_id": "9hz",
    "resolved": 0,
    "orderindex": 0,
    "unresolved": 0
  },
  "required": [
    "id",
    "task_id",
    "name",
    "orderindex",
    "resolved",
    "unresolved",
    "items"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "items": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "task_id": {
      "type": "string"
    },
    "resolved": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "unresolved": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
      "name": "Checklist",
      "items": [],
      "task_id": "9hz",
      "resolved": 0,
      "orderindex": 0,
      "unresolved": 0
    }
  ]
}
object Checklist1
{
  "type": "object",
  "title": "Checklist1",
  "example": {
    "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
    "name": "Checklist",
    "items": [
      {
        "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
        "name": "Checklist Item",
        "parent": null,
        "assignee": {
          "id": 183,
          "color": "#827718",
          "email": "example@email.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
        },
        "children": [],
        "resolved": false,
        "orderindex": 0,
        "date_created": "1567711566859"
      }
    ],
    "task_id": "9hv",
    "resolved": 0,
    "orderindex": 0,
    "unresolved": 1,
    "date_created": "1567711563204"
  },
  "required": [
    "id",
    "task_id",
    "name",
    "date_created",
    "orderindex",
    "resolved",
    "unresolved",
    "items"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Item"
      },
      "description": ""
    },
    "task_id": {
      "type": "string"
    },
    "resolved": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "unresolved": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
      "name": "Checklist",
      "items": [
        {
          "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
          "name": "Checklist Item",
          "parent": null,
          "assignee": {
            "id": 183,
            "color": "#827718",
            "email": "example@email.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
          },
          "children": [],
          "resolved": false,
          "orderindex": 0,
          "date_created": "1567711566859"
        }
      ],
      "task_id": "9hv",
      "resolved": 0,
      "orderindex": 0,
      "unresolved": 1,
      "date_created": "1567711563204"
    }
  ]
}
object Checklist2
{
  "type": "object",
  "title": "Checklist2",
  "example": {
    "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
    "name": "Checklist",
    "items": [
      {
        "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
        "name": "Updated Checklist Item",
        "parent": null,
        "assignee": null,
        "children": [],
        "resolved": true,
        "orderindex": 0,
        "date_created": "1567711566859"
      }
    ],
    "task_id": "9hv",
    "resolved": 1,
    "orderindex": 0,
    "unresolved": 0,
    "date_created": "1567711563204"
  },
  "required": [
    "id",
    "task_id",
    "name",
    "date_created",
    "orderindex",
    "resolved",
    "unresolved",
    "items"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Item1"
      },
      "description": ""
    },
    "task_id": {
      "type": "string"
    },
    "resolved": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "unresolved": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
      "name": "Checklist",
      "items": [
        {
          "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
          "name": "Updated Checklist Item",
          "parent": null,
          "assignee": null,
          "children": [],
          "resolved": true,
          "orderindex": 0,
          "date_created": "1567711566859"
        }
      ],
      "task_id": "9hv",
      "resolved": 1,
      "orderindex": 0,
      "unresolved": 0,
      "date_created": "1567711563204"
    }
  ]
}
object Checklists
{
  "type": "object",
  "title": "Checklists",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object Checklists6
{
  "type": "object",
  "title": "Checklists6",
  "example": {
    "id": "d41340bc-2f17-43cc-ae71-86628f45825fX",
    "name": "Checklist",
    "items": [
      {
        "id": "9398cb3d-55a4-4c45-ab46-2a47a371e375X",
        "name": "checklist item 1",
        "parent": null,
        "assignee": null,
        "children": [],
        "resolved": false,
        "orderindex": 0,
        "date_created": "1618455810454"
      }
    ],
    "creator": 2770032,
    "task_id": "3cxv9f",
    "resolved": 0,
    "orderindex": 1,
    "unresolved": 1,
    "date_created": "1618455803730"
  },
  "required": [
    "id",
    "task_id",
    "name",
    "date_created",
    "orderindex",
    "creator",
    "resolved",
    "unresolved",
    "items"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Item1"
      },
      "description": ""
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "task_id": {
      "type": "string"
    },
    "resolved": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "unresolved": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "d41340bc-2f17-43cc-ae71-86628f45825fX",
      "name": "Checklist",
      "items": [
        {
          "id": "9398cb3d-55a4-4c45-ab46-2a47a371e375X",
          "name": "checklist item 1",
          "parent": null,
          "assignee": null,
          "children": [],
          "resolved": false,
          "orderindex": 0,
          "date_created": "1618455810454"
        }
      ],
      "creator": 2770032,
      "task_id": "3cxv9f",
      "resolved": 0,
      "orderindex": 1,
      "unresolved": 1,
      "date_created": "1618455803730"
    }
  ]
}
object Columns
{
  "type": "object",
  "title": "Columns",
  "example": {
    "fields": []
  },
  "required": [
    "fields"
  ],
  "properties": {
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Custom Fields require the `_cf` prefix and must be formatted as a JSON object."
    }
  },
  "x-examples": [
    {
      "fields": []
    }
  ],
  "description": "Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy."
}
object Comment
{
  "type": "object",
  "title": "Comment",
  "example": {
    "id": "458X",
    "date": "1568036964079",
    "user": {
      "id": 183,
      "color": "#827718",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "comment": [
      {
        "text": "Task comment content"
      }
    ],
    "assignee": {
      "id": 183,
      "color": "#827718",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "resolved": false,
    "reactions": [],
    "assigned_by": {
      "id": 183,
      "color": "#827718",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "comment_text": "Task comment content"
  },
  "required": [
    "id",
    "comment",
    "comment_text",
    "user",
    "resolved",
    "assignee",
    "assigned_by",
    "reactions",
    "date"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "date": {
      "type": "string"
    },
    "user": {
      "$ref": "#/components/schemas/User2"
    },
    "comment": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Comment1"
      },
      "description": ""
    },
    "assignee": {
      "$ref": "#/components/schemas/Assignee"
    },
    "resolved": {
      "type": "boolean"
    },
    "reactions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "assigned_by": {
      "$ref": "#/components/schemas/AssignedBy"
    },
    "comment_text": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "458X",
      "date": "1568036964079",
      "user": {
        "id": 183,
        "color": "#827718",
        "email": "johndoe@gmail.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "comment": [
        {
          "text": "Task comment content"
        }
      ],
      "assignee": {
        "id": 183,
        "color": "#827718",
        "email": "johndoe@gmail.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "resolved": false,
      "reactions": [],
      "assigned_by": {
        "id": 183,
        "color": "#827718",
        "email": "johndoe@gmail.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "comment_text": "Task comment content"
    }
  ]
}
object Comment1
{
  "type": "object",
  "title": "Comment1",
  "example": {
    "text": "Task comment content"
  },
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "text": "Task comment content"
    }
  ]
}
object Comment2
{
  "type": "object",
  "title": "Comment2",
  "example": {
    "id": "459X",
    "date": "1568036964079",
    "user": {
      "id": 183,
      "color": "#827718",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "comment": [
      {
        "text": "View comment content"
      }
    ],
    "assignee": null,
    "resolved": false,
    "reactions": [],
    "assigned_by": null,
    "comment_text": "View comment content"
  },
  "required": [
    "id",
    "comment",
    "comment_text",
    "user",
    "resolved",
    "assignee",
    "assigned_by",
    "reactions",
    "date"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "date": {
      "type": "string"
    },
    "user": {
      "$ref": "#/components/schemas/User2"
    },
    "comment": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Comment1"
      },
      "description": ""
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "resolved": {
      "type": "boolean"
    },
    "reactions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "assigned_by": {
      "type": [
        "string",
        "null"
      ]
    },
    "comment_text": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "459X",
      "date": "1568036964079",
      "user": {
        "id": 183,
        "color": "#827718",
        "email": "johndoe@gmail.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "comment": [
        {
          "text": "View comment content"
        }
      ],
      "assignee": null,
      "resolved": false,
      "reactions": [],
      "assigned_by": null,
      "comment_text": "View comment content"
    }
  ]
}
object CommentsDeleteTaskCommentResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object CommentsUpdateTaskCommentResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object CreateChatViewCommentrequest
{
  "type": "object",
  "title": "CreateChatViewCommentrequest",
  "example": {
    "notify_all": true,
    "comment_text": "View comment content"
  },
  "required": [
    "comment_text",
    "notify_all"
  ],
  "properties": {
    "notify_all": {
      "type": "boolean",
      "description": "If `notify_all` is true, notifications will be sent to everyone including the creator of the comment."
    },
    "comment_text": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "notify_all": true,
      "comment_text": "View comment content"
    }
  ]
}
object CreateChatViewCommentresponse
{
  "type": "object",
  "title": "CreateChatViewCommentresponse",
  "example": {
    "id": "459X",
    "date": 1568037065216,
    "hist_id": "0a45e16e-4e2f-4a9e-99ec-3cf520b87eae"
  },
  "required": [
    "id",
    "hist_id",
    "date"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "hist_id": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "459X",
      "date": 1568037065216,
      "hist_id": "0a45e16e-4e2f-4a9e-99ec-3cf520b87eae"
    }
  ]
}
object CreateChecklistItemrequest
{
  "type": "object",
  "title": "CreateChecklistItemrequest",
  "example": {
    "name": "Checklist Item",
    "assignee": 183
  },
  "properties": {
    "name": {
      "type": "string"
    },
    "assignee": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "name": "Checklist Item",
      "assignee": 183
    }
  ]
}
object CreateChecklistItemresponse
{
  "type": "object",
  "title": "CreateChecklistItemresponse",
  "example": {
    "checklist": {
      "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
      "name": "Checklist",
      "items": [
        {
          "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
          "name": "Checklist Item",
          "parent": null,
          "assignee": {
            "id": 183,
            "color": "#827718",
            "email": "example@email.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
          },
          "children": [],
          "resolved": false,
          "orderindex": 0,
          "date_created": "1567711566859"
        }
      ],
      "task_id": "9hv",
      "resolved": 0,
      "orderindex": 0,
      "unresolved": 1,
      "date_created": "1567711563204"
    }
  },
  "required": [
    "checklist"
  ],
  "properties": {
    "checklist": {
      "$ref": "#/components/schemas/Checklist1"
    }
  },
  "x-examples": [
    {
      "checklist": {
        "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
        "name": "Checklist",
        "items": [
          {
            "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
            "name": "Checklist Item",
            "parent": null,
            "assignee": {
              "id": 183,
              "color": "#827718",
              "email": "example@email.com",
              "initials": "JD",
              "username": "John Doe",
              "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
            },
            "children": [],
            "resolved": false,
            "orderindex": 0,
            "date_created": "1567711566859"
          }
        ],
        "task_id": "9hv",
        "resolved": 0,
        "orderindex": 0,
        "unresolved": 1,
        "date_created": "1567711563204"
      }
    }
  ]
}
object CreateChecklistrequest
{
  "type": "object",
  "title": "CreateChecklistrequest",
  "example": {
    "name": "Checklist"
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "Checklist"
    }
  ]
}
object CreateChecklistresponse
{
  "type": "object",
  "title": "CreateChecklistresponse",
  "example": {
    "checklist": {
      "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
      "name": "Checklist",
      "items": [],
      "task_id": "9hz",
      "resolved": 0,
      "orderindex": 0,
      "unresolved": 0
    }
  },
  "required": [
    "checklist"
  ],
  "properties": {
    "checklist": {
      "$ref": "#/components/schemas/Checklist"
    }
  },
  "x-examples": [
    {
      "checklist": {
        "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
        "name": "Checklist",
        "items": [],
        "task_id": "9hz",
        "resolved": 0,
        "orderindex": 0,
        "unresolved": 0
      }
    }
  ]
}
object CreateFolderViewrequest
{
  "type": "object",
  "title": "CreateFolderViewrequest",
  "example": {
    "name": "New Folder View Name",
    "type": "list",
    "divide": {
      "dir": null,
      "field": null,
      "collapsed": []
    },
    "columns": {
      "fields": []
    },
    "filters": {
      "op": "AND",
      "fields": [],
      "search": "",
      "show_closed": false
    },
    "sorting": {
      "fields": []
    },
    "grouping": {
      "dir": 1,
      "field": "status",
      "ignore": false,
      "collapsed": []
    },
    "settings": {
      "me_comments": true,
      "me_subtasks": true,
      "show_images": true,
      "me_checklists": true,
      "show_subtasks": 3,
      "show_assignees": true,
      "show_task_locations": false,
      "show_closed_subtasks": false,
      "collapse_empty_columns": null,
      "show_subtask_parent_names": false
    },
    "team_sidebar": {
      "assignees": [],
      "unassigned_tasks": false,
      "assigned_comments": false
    }
  },
  "required": [
    "name",
    "type",
    "grouping",
    "divide",
    "sorting",
    "filters",
    "columns",
    "team_sidebar",
    "settings"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
    },
    "divide": {
      "$ref": "#/components/schemas/Divide"
    },
    "columns": {
      "$ref": "#/components/schemas/Columns"
    },
    "filters": {
      "$ref": "#/components/schemas/Filters"
    },
    "sorting": {
      "$ref": "#/components/schemas/Sorting"
    },
    "grouping": {
      "$ref": "#/components/schemas/Grouping"
    },
    "settings": {
      "$ref": "#/components/schemas/Settings"
    },
    "team_sidebar": {
      "$ref": "#/components/schemas/TeamSidebar"
    }
  },
  "x-examples": [
    {
      "name": "New Folder View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  ]
}
object CreateFolderViewresponse
{
  "type": "object",
  "title": "CreateFolderViewresponse",
  "example": {
    "view": {
      "id": "3c-107X",
      "name": "New Folder View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "457X",
        "type": 5
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  },
  "required": [
    "view"
  ],
  "properties": {
    "view": {
      "$ref": "#/components/schemas/View"
    }
  },
  "x-examples": [
    {
      "view": {
        "id": "3c-107X",
        "name": "New Folder View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "457X",
          "type": 5
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  ]
}
object CreateFolderlessListrequest
{
  "type": "object",
  "title": "CreateFolderlessListrequest",
  "example": {
    "name": "New List Name",
    "status": "red",
    "content": "New List Content",
    "assignee": 183,
    "due_date": 1567780450202,
    "priority": 1,
    "due_date_time": false
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "description": "**Status** refers to the List color rather than the task Statuses available in the List."
    },
    "content": {
      "type": "string"
    },
    "assignee": {
      "type": "integer",
      "description": "Include a `user_id` to add a List owner.",
      "contentEncoding": "int32"
    },
    "due_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "priority": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "due_date_time": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "New List Name",
      "status": "red",
      "content": "New List Content",
      "assignee": 183,
      "due_date": 1567780450202,
      "priority": 1,
      "due_date_time": false
    }
  ]
}
object CreateFolderlessListresponse
{
  "type": "object",
  "title": "CreateFolderlessListresponse",
  "example": {
    "id": "124X",
    "name": "New List Name",
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "folder": {
      "id": "457X",
      "name": "hidden",
      "access": true,
      "hidden": true
    },
    "status": {
      "color": "#e50000",
      "status": "red",
      "hide_label": true
    },
    "content": "New List Content",
    "assignee": {
      "id": 183,
      "color": "#827718",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "due_date": "1567780450202",
    "priority": {
      "color": "#f50000",
      "priority": "urgent"
    },
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "orderindex": 1,
    "start_date": null,
    "task_count": null,
    "due_date_time": false,
    "inbound_address": "add.task.1389.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
    "start_date_time": null
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "content",
    "status",
    "priority",
    "assignee",
    "task_count",
    "due_date",
    "due_date_time",
    "start_date",
    "start_date_time",
    "folder",
    "space",
    "statuses",
    "inbound_address"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder3"
    },
    "status": {
      "$ref": "#/components/schemas/Status5"
    },
    "content": {
      "type": "string"
    },
    "assignee": {
      "$ref": "#/components/schemas/Assignee3"
    },
    "due_date": {
      "type": "string"
    },
    "priority": {
      "$ref": "#/components/schemas/Priority1"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "task_count": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date_time": {
      "type": "boolean"
    },
    "inbound_address": {
      "type": "string"
    },
    "start_date_time": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "124X",
      "name": "New List Name",
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "folder": {
        "id": "457X",
        "name": "hidden",
        "access": true,
        "hidden": true
      },
      "status": {
        "color": "#e50000",
        "status": "red",
        "hide_label": true
      },
      "content": "New List Content",
      "assignee": {
        "id": 183,
        "color": "#827718",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "due_date": "1567780450202",
      "priority": {
        "color": "#f50000",
        "priority": "urgent"
      },
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "orderindex": 1,
      "start_date": null,
      "task_count": null,
      "due_date_time": false,
      "inbound_address": "add.task.1389.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
      "start_date_time": null
    }
  ]
}
object CreateFolderrequest
{
  "type": "object",
  "title": "CreateFolderrequest",
  "example": {
    "name": "New Folder Name"
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "New Folder Name"
    }
  ]
}
object CreateFolderresponse
{
  "type": "object",
  "title": "CreateFolderresponse",
  "example": {
    "id": "457X",
    "name": "New Folder Name",
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "hidden": false,
    "orderindex": 0,
    "task_count": "0",
    "override_statuses": false
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "override_statuses",
    "hidden",
    "space",
    "task_count"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "hidden": {
      "type": "boolean"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "task_count": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "457X",
      "name": "New Folder Name",
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "hidden": false,
      "orderindex": 0,
      "task_count": "0",
      "override_statuses": false
    }
  ]
}
object CreateGoalrequest
{
  "type": "object",
  "title": "CreateGoalrequest",
  "example": {
    "name": "Goal Name",
    "color": "#32a852",
    "owners": [
      183
    ],
    "due_date": 1568036964079,
    "description": "Goal Description",
    "multiple_owners": true
  },
  "required": [
    "name",
    "due_date",
    "description",
    "multiple_owners",
    "owners",
    "color"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "owners": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": "Array of user IDs."
    },
    "due_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "description": {
      "type": "string"
    },
    "multiple_owners": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "Goal Name",
      "color": "#32a852",
      "owners": [
        183
      ],
      "due_date": 1568036964079,
      "description": "Goal Description",
      "multiple_owners": true
    }
  ]
}
object CreateGoalresponse
{
  "type": "object",
  "title": "CreateGoalresponse",
  "example": {
    "goal": {
      "id": "e53a033c-900e-462d-a849-4a216b06d930X",
      "name": "Goal Name",
      "color": "#32a852",
      "owners": [
        {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        }
      ],
      "creator": 183,
      "history": [],
      "members": [],
      "private": false,
      "team_id": "512",
      "archived": false,
      "due_date": "1568036964079",
      "folder_id": null,
      "pretty_id": "6",
      "pretty_url": "https://app.clickup.com/512/goals/6",
      "start_date": null,
      "description": "Goal Description",
      "key_results": [],
      "date_created": "1568044355026",
      "multiple_owners": true,
      "percent_completed": 0
    }
  },
  "required": [
    "goal"
  ],
  "properties": {
    "goal": {
      "$ref": "#/components/schemas/Goal"
    }
  },
  "x-examples": [
    {
      "goal": {
        "id": "e53a033c-900e-462d-a849-4a216b06d930X",
        "name": "Goal Name",
        "color": "#32a852",
        "owners": [
          {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          }
        ],
        "creator": 183,
        "history": [],
        "members": [],
        "private": false,
        "team_id": "512",
        "archived": false,
        "due_date": "1568036964079",
        "folder_id": null,
        "pretty_id": "6",
        "pretty_url": "https://app.clickup.com/512/goals/6",
        "start_date": null,
        "description": "Goal Description",
        "key_results": [],
        "date_created": "1568044355026",
        "multiple_owners": true,
        "percent_completed": 0
      }
    }
  ]
}
object CreateKeyResultrequest
{
  "type": "object",
  "title": "CreateKeyResultrequest",
  "example": {
    "name": "New Target Name",
    "type": "number",
    "unit": "km",
    "owners": [
      183
    ],
    "list_ids": [],
    "task_ids": [],
    "steps_end": 10,
    "steps_start": 0
  },
  "required": [
    "name",
    "owners",
    "type",
    "steps_start",
    "steps_end",
    "unit",
    "task_ids",
    "list_ids"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "Target (key result) types include: `number`, `currency`, `boolean`, `percentage`, or `automatic`."
    },
    "unit": {
      "type": "string"
    },
    "owners": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    },
    "list_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Enter an array of List IDs to link this target with one or more Lists."
    },
    "task_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Enter an array of task IDs to link this target with one or more tasks."
    },
    "steps_end": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "steps_start": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "name": "New Target Name",
      "type": "number",
      "unit": "km",
      "owners": [
        183
      ],
      "list_ids": [],
      "task_ids": [],
      "steps_end": 10,
      "steps_start": 0
    }
  ]
}
object CreateKeyResultresponse
{
  "type": "object",
  "title": "CreateKeyResultresponse",
  "example": {
    "key_result": {
      "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
      "name": "New Key Result Name",
      "type": "number",
      "unit": "km",
      "owners": [
        {
          "id": 183,
          "color": "#827718",
          "email": "example@email.com",
          "initials": "JK",
          "username": "John Doe",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
        }
      ],
      "creator": 183,
      "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
      "task_ids": [],
      "completed": false,
      "last_action": {
        "id": "d3183d0f-5cbd-4158-b015-71465f1df269X",
        "note": "Created Key Result",
        "userid": 183,
        "steps_taken": null,
        "steps_before": null,
        "date_modified": "1568062902048",
        "key_result_id": "947d46ed-8480-49bc-8c57-e569747efe93",
        "steps_current": null
      },
      "date_created": "1568062902048",
      "goal_pretty_id": "6",
      "subcategory_ids": [],
      "percent_completed": null
    }
  },
  "required": [
    "key_result"
  ],
  "properties": {
    "key_result": {
      "$ref": "#/components/schemas/KeyResult"
    }
  },
  "x-examples": [
    {
      "key_result": {
        "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
        "name": "New Key Result Name",
        "type": "number",
        "unit": "km",
        "owners": [
          {
            "id": 183,
            "color": "#827718",
            "email": "example@email.com",
            "initials": "JK",
            "username": "John Doe",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
          }
        ],
        "creator": 183,
        "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
        "task_ids": [],
        "completed": false,
        "last_action": {
          "id": "d3183d0f-5cbd-4158-b015-71465f1df269X",
          "note": "Created Key Result",
          "userid": 183,
          "steps_taken": null,
          "steps_before": null,
          "date_modified": "1568062902048",
          "key_result_id": "947d46ed-8480-49bc-8c57-e569747efe93",
          "steps_current": null
        },
        "date_created": "1568062902048",
        "goal_pretty_id": "6",
        "subcategory_ids": [],
        "percent_completed": null
      }
    }
  ]
}
object CreateListCommentrequest
{
  "type": "object",
  "title": "CreateListCommentrequest",
  "example": {
    "assignee": 183,
    "notify_all": true,
    "comment_text": "List comment content"
  },
  "required": [
    "comment_text",
    "assignee",
    "notify_all"
  ],
  "properties": {
    "assignee": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "notify_all": {
      "type": "boolean",
      "description": "If `notify_all` is true, notifications will be sent to everyone including the creator of the comment."
    },
    "comment_text": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "assignee": 183,
      "notify_all": true,
      "comment_text": "List comment content"
    }
  ]
}
object CreateListCommentresponse
{
  "type": "object",
  "title": "CreateListCommentresponse",
  "example": {
    "id": "462X",
    "date": 1568037341249,
    "hist_id": "5bbea9ad-7cc3-4038-a8bb-a89ac1337c08"
  },
  "required": [
    "id",
    "hist_id",
    "date"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "hist_id": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "462X",
      "date": 1568037341249,
      "hist_id": "5bbea9ad-7cc3-4038-a8bb-a89ac1337c08"
    }
  ]
}
object CreateListViewrequest
{
  "type": "object",
  "title": "CreateListViewrequest",
  "example": {
    "name": "New List View Name",
    "type": "list",
    "divide": {
      "dir": null,
      "field": null,
      "collapsed": []
    },
    "columns": {
      "fields": []
    },
    "filters": {
      "op": "AND",
      "fields": [],
      "search": "",
      "show_closed": false
    },
    "sorting": {
      "fields": []
    },
    "grouping": {
      "dir": 1,
      "field": "status",
      "ignore": false,
      "collapsed": []
    },
    "settings": {
      "me_comments": true,
      "me_subtasks": true,
      "show_images": true,
      "me_checklists": true,
      "show_subtasks": 3,
      "show_assignees": true,
      "show_task_locations": false,
      "show_closed_subtasks": false,
      "collapse_empty_columns": null,
      "show_subtask_parent_names": false
    },
    "team_sidebar": {
      "assignees": [],
      "unassigned_tasks": false,
      "assigned_comments": false
    }
  },
  "required": [
    "name",
    "type",
    "grouping",
    "divide",
    "sorting",
    "filters",
    "columns",
    "team_sidebar",
    "settings"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
    },
    "divide": {
      "$ref": "#/components/schemas/Divide"
    },
    "columns": {
      "$ref": "#/components/schemas/Columns"
    },
    "filters": {
      "$ref": "#/components/schemas/Filters"
    },
    "sorting": {
      "$ref": "#/components/schemas/Sorting"
    },
    "grouping": {
      "$ref": "#/components/schemas/Grouping"
    },
    "settings": {
      "$ref": "#/components/schemas/Settings"
    },
    "team_sidebar": {
      "$ref": "#/components/schemas/TeamSidebar"
    }
  },
  "x-examples": [
    {
      "name": "New List View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  ]
}
object CreateListViewresponse
{
  "type": "object",
  "title": "CreateListViewresponse",
  "example": {
    "view": {
      "id": "3c-108X",
      "name": "New List View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "124X",
        "type": 6
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  },
  "required": [
    "view"
  ],
  "properties": {
    "view": {
      "$ref": "#/components/schemas/View"
    }
  },
  "x-examples": [
    {
      "view": {
        "id": "3c-108X",
        "name": "New List View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "124X",
          "type": 6
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  ]
}
object CreateListrequest
{
  "type": "object",
  "title": "CreateListrequest",
  "example": {
    "name": "New List Name",
    "status": "red",
    "content": "New List Content",
    "assignee": 183,
    "due_date": 1567780450202,
    "priority": 1,
    "due_date_time": false
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "description": "**Status** refers to the List color rather than the task Statuses available in the List."
    },
    "content": {
      "type": "string"
    },
    "assignee": {
      "type": "integer",
      "description": "Include a `user_id` to assign this List.",
      "contentEncoding": "int32"
    },
    "due_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "priority": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "due_date_time": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "New List Name",
      "status": "red",
      "content": "New List Content",
      "assignee": 183,
      "due_date": 1567780450202,
      "priority": 1,
      "due_date_time": false
    }
  ]
}
object CreateListresponse
{
  "type": "object",
  "title": "CreateListresponse",
  "example": {
    "id": "124X",
    "name": "New List Name",
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "folder": {
      "id": "456X",
      "name": "Folder Name",
      "access": true,
      "hidden": false
    },
    "status": {
      "color": "#e50000",
      "status": "red",
      "hide_label": true
    },
    "content": "New List Content",
    "assignee": {
      "id": 183,
      "color": "#827718",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "due_date": "1567780450202",
    "priority": {
      "color": "#f50000",
      "priority": "urgent"
    },
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "orderindex": 1,
    "start_date": null,
    "task_count": null,
    "due_date_time": false,
    "inbound_address": "add.task.1389.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
    "start_date_time": null
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "content",
    "status",
    "priority",
    "assignee",
    "task_count",
    "due_date",
    "due_date_time",
    "start_date",
    "start_date_time",
    "folder",
    "space",
    "statuses",
    "inbound_address"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder3"
    },
    "status": {
      "$ref": "#/components/schemas/Status5"
    },
    "content": {
      "type": "string"
    },
    "assignee": {
      "$ref": "#/components/schemas/Assignee3"
    },
    "due_date": {
      "type": "string"
    },
    "priority": {
      "$ref": "#/components/schemas/Priority1"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "task_count": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date_time": {
      "type": "boolean"
    },
    "inbound_address": {
      "type": "string"
    },
    "start_date_time": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "124X",
      "name": "New List Name",
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "folder": {
        "id": "456X",
        "name": "Folder Name",
        "access": true,
        "hidden": false
      },
      "status": {
        "color": "#e50000",
        "status": "red",
        "hide_label": true
      },
      "content": "New List Content",
      "assignee": {
        "id": 183,
        "color": "#827718",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "due_date": "1567780450202",
      "priority": {
        "color": "#f50000",
        "priority": "urgent"
      },
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "orderindex": 1,
      "start_date": null,
      "task_count": null,
      "due_date_time": false,
      "inbound_address": "add.task.1389.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
      "start_date_time": null
    }
  ]
}
object CreateSpaceTagrequest
{
  "type": "object",
  "title": "CreateSpaceTagrequest",
  "example": {
    "tag": {
      "name": "Tag Name",
      "tag_bg": "#000000",
      "tag_fg": "#000000"
    }
  },
  "required": [
    "tag"
  ],
  "properties": {
    "tag": {
      "$ref": "#/components/schemas/Tag"
    }
  },
  "x-examples": [
    {
      "tag": {
        "name": "Tag Name",
        "tag_bg": "#000000",
        "tag_fg": "#000000"
      }
    }
  ]
}
object CreateSpaceViewrequest
{
  "type": "object",
  "title": "CreateSpaceViewrequest",
  "example": {
    "name": "New Space View Name",
    "type": "list",
    "divide": {
      "dir": null,
      "field": null,
      "collapsed": []
    },
    "columns": {
      "fields": []
    },
    "filters": {
      "op": "AND",
      "fields": [],
      "search": "",
      "show_closed": false
    },
    "sorting": {
      "fields": []
    },
    "grouping": {
      "dir": 1,
      "field": "status",
      "ignore": false,
      "collapsed": []
    },
    "settings": {
      "me_comments": true,
      "me_subtasks": true,
      "show_images": true,
      "me_checklists": true,
      "show_subtasks": 3,
      "show_assignees": true,
      "show_task_locations": false,
      "show_closed_subtasks": false,
      "collapse_empty_columns": null,
      "show_subtask_parent_names": false
    },
    "team_sidebar": {
      "assignees": [],
      "unassigned_tasks": false,
      "assigned_comments": false
    }
  },
  "required": [
    "name",
    "type",
    "grouping",
    "divide",
    "sorting",
    "filters",
    "columns",
    "team_sidebar",
    "settings"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
    },
    "divide": {
      "$ref": "#/components/schemas/Divide"
    },
    "columns": {
      "$ref": "#/components/schemas/Columns"
    },
    "filters": {
      "$ref": "#/components/schemas/Filters"
    },
    "sorting": {
      "$ref": "#/components/schemas/Sorting"
    },
    "grouping": {
      "$ref": "#/components/schemas/Grouping"
    },
    "settings": {
      "$ref": "#/components/schemas/Settings"
    },
    "team_sidebar": {
      "$ref": "#/components/schemas/TeamSidebar"
    }
  },
  "x-examples": [
    {
      "name": "New Space View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  ]
}
object CreateSpaceViewresponse
{
  "type": "object",
  "title": "CreateSpaceViewresponse",
  "example": {
    "view": {
      "id": "3c-106X",
      "name": "New Space View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "790X",
        "type": 4
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": {
          "dir": -1,
          "idx": 0,
          "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
        }
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  },
  "required": [
    "view"
  ],
  "properties": {
    "view": {
      "$ref": "#/components/schemas/View"
    }
  },
  "x-examples": [
    {
      "view": {
        "id": "3c-106X",
        "name": "New Space View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "790X",
          "type": 4
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": {
            "dir": -1,
            "idx": 0,
            "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
          }
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  ]
}
object CreateSpacerequest
{
  "type": "object",
  "title": "CreateSpacerequest",
  "example": {
    "name": "New Space Name",
    "features": {
      "tags": {
        "enabled": true
      },
      "due_dates": {
        "enabled": true,
        "start_date": false,
        "remap_due_dates": true,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "portfolios": {
        "enabled": true
      },
      "custom_fields": {
        "enabled": true
      },
      "time_tracking": {
        "enabled": false
      },
      "time_estimates": {
        "enabled": true
      },
      "dependency_warning": {
        "enabled": true
      },
      "remap_dependencies": {
        "enabled": true
      }
    },
    "multiple_assignees": true
  },
  "required": [
    "name",
    "multiple_assignees",
    "features"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "features": {
      "$ref": "#/components/schemas/Features"
    },
    "multiple_assignees": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "New Space Name",
      "features": {
        "tags": {
          "enabled": true
        },
        "due_dates": {
          "enabled": true,
          "start_date": false,
          "remap_due_dates": true,
          "remap_closed_due_date": false
        },
        "checklists": {
          "enabled": true
        },
        "portfolios": {
          "enabled": true
        },
        "custom_fields": {
          "enabled": true
        },
        "time_tracking": {
          "enabled": false
        },
        "time_estimates": {
          "enabled": true
        },
        "dependency_warning": {
          "enabled": true
        },
        "remap_dependencies": {
          "enabled": true
        }
      },
      "multiple_assignees": true
    }
  ]
}
object CreateSpaceresponse
{
  "type": "object",
  "title": "CreateSpaceresponse",
  "example": {
    "id": "790X",
    "name": "New Space Name",
    "private": false,
    "archived": false,
    "features": {
      "tags": {
        "enabled": true
      },
      "zoom": {
        "enabled": false
      },
      "emails": {
        "enabled": true
      },
      "points": {
        "enabled": false
      },
      "sprints": {
        "enabled": false
      },
      "due_dates": {
        "enabled": true,
        "start_date": false,
        "remap_due_dates": true,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "milestones": {
        "enabled": false
      },
      "portfolios": {
        "enabled": true
      },
      "custom_items": {
        "enabled": false
      },
      "custom_fields": {
        "enabled": true
      },
      "time_estimates": {
        "enabled": true
      },
      "dependency_warning": {
        "enabled": true
      },
      "multiple_assignees": {
        "enabled": true
      },
      "remap_dependencies": {
        "enabled": true
      }
    },
    "statuses": [
      {
        "id": "p16911531_p8y2WNC6X",
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "id": "p17911545_ABo7jSsfX",
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "multiple_assignees": true
  },
  "required": [
    "id",
    "name",
    "private",
    "statuses",
    "multiple_assignees",
    "features",
    "archived"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "private": {
      "type": "boolean"
    },
    "archived": {
      "type": "boolean"
    },
    "features": {
      "$ref": "#/components/schemas/Features1"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status15"
      },
      "description": ""
    },
    "multiple_assignees": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "790X",
      "name": "New Space Name",
      "private": false,
      "archived": false,
      "features": {
        "tags": {
          "enabled": true
        },
        "zoom": {
          "enabled": false
        },
        "emails": {
          "enabled": true
        },
        "points": {
          "enabled": false
        },
        "sprints": {
          "enabled": false
        },
        "due_dates": {
          "enabled": true,
          "start_date": false,
          "remap_due_dates": true,
          "remap_closed_due_date": false
        },
        "checklists": {
          "enabled": true
        },
        "milestones": {
          "enabled": false
        },
        "portfolios": {
          "enabled": true
        },
        "custom_items": {
          "enabled": false
        },
        "custom_fields": {
          "enabled": true
        },
        "time_estimates": {
          "enabled": true
        },
        "dependency_warning": {
          "enabled": true
        },
        "multiple_assignees": {
          "enabled": true
        },
        "remap_dependencies": {
          "enabled": true
        }
      },
      "statuses": [
        {
          "id": "p16911531_p8y2WNC6X",
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "id": "p17911545_ABo7jSsfX",
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "multiple_assignees": true
    }
  ]
}
object CreateTaskAttachmentresponse
{
  "type": "object",
  "title": "CreateTaskAttachmentresponse",
  "example": {
    "id": "ac434d4e-8b1c-4571-951b-866b6d9f2ee6.pngX",
    "url": "https://attachments-public.clickup.com/ac434d4e-8b1c-4571-951b-866b6d9f2ee6/logo_small.png",
    "date": 1569988578766,
    "title": "image.png",
    "version": "0",
    "extension": "png",
    "thumbnail_large": "https://attachments-public.clickup.com/ac434d4e-8b1c-4571-951b-866b6d9f2ee6/logo_small.png",
    "thumbnail_small": "https://attachments-public.clickup.com/ac434d4e-8b1c-4571-951b-866b6d9f2ee6/logo_small.png"
  },
  "required": [
    "id",
    "version",
    "date",
    "title",
    "extension",
    "thumbnail_small",
    "thumbnail_large",
    "url"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "title": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "extension": {
      "type": "string"
    },
    "thumbnail_large": {
      "type": "string"
    },
    "thumbnail_small": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "ac434d4e-8b1c-4571-951b-866b6d9f2ee6.pngX",
      "url": "https://attachments-public.clickup.com/ac434d4e-8b1c-4571-951b-866b6d9f2ee6/logo_small.png",
      "date": 1569988578766,
      "title": "image.png",
      "version": "0",
      "extension": "png",
      "thumbnail_large": "https://attachments-public.clickup.com/ac434d4e-8b1c-4571-951b-866b6d9f2ee6/logo_small.png",
      "thumbnail_small": "https://attachments-public.clickup.com/ac434d4e-8b1c-4571-951b-866b6d9f2ee6/logo_small.png"
    }
  ]
}
object CreateTaskCommentrequest
{
  "type": "object",
  "title": "CreateTaskCommentrequest",
  "example": {
    "assignee": 183,
    "notify_all": true,
    "comment_text": "Task comment content"
  },
  "required": [
    "comment_text",
    "assignee",
    "notify_all"
  ],
  "properties": {
    "assignee": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "notify_all": {
      "type": "boolean",
      "description": "If `notify_all` is true, notifications will be sent to everyone including the creator of the comment."
    },
    "comment_text": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "assignee": 183,
      "notify_all": true,
      "comment_text": "Task comment content"
    }
  ]
}
object CreateTaskCommentresponse
{
  "type": "object",
  "title": "CreateTaskCommentresponse",
  "example": {
    "id": "458X",
    "date": 1568036964079,
    "hist_id": "26508"
  },
  "required": [
    "id",
    "hist_id",
    "date"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "hist_id": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "458X",
      "date": 1568036964079,
      "hist_id": "26508"
    }
  ]
}
object CreateTaskFromTemplaterequest
{
  "type": "object",
  "title": "CreateTaskFromTemplaterequest",
  "example": {
    "name": "New task name"
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "New task name"
    }
  ]
}
object CreateTaskrequest
{
  "type": "object",
  "title": "CreateTaskrequest",
  "example": {
    "name": "New Task Name",
    "tags": [
      "tag name 1"
    ],
    "parent": null,
    "status": "Open",
    "due_date": 1508369194377,
    "links_to": null,
    "priority": 3,
    "assignees": [
      183
    ],
    "notify_all": true,
    "start_date": 1567780450202,
    "description": "New Task Description",
    "custom_fields": [
      {
        "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
        "value": 23
      },
      {
        "id": "03efda77-c7a0-42d3-8afd-fd546353c2f5X",
        "value": "Text field input"
      }
    ],
    "due_date_time": false,
    "time_estimate": 8640000,
    "start_date_time": false,
    "check_required_custom_fields": true
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "parent": {
      "type": [
        "string",
        "null"
      ],
      "description": "You can create a subtask by including an existing task ID.\\\n \\\nThe `parent` task ID you include cannot be a subtask, and must be in the same List specified in the path parameter."
    },
    "status": {
      "type": "string"
    },
    "due_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "links_to": {
      "type": [
        "string",
        "null"
      ],
      "description": "Include a task ID to create a linked dependency with your new task."
    },
    "priority": {
      "type": [
        "integer",
        "null"
      ],
      "contentEncoding": "int32"
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    },
    "notify_all": {
      "type": "boolean",
      "description": "If `notify_all` is true, notifications will be sent to everyone including the creator of the comment."
    },
    "start_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "description": {
      "type": "string"
    },
    "custom_fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomFields6"
      },
      "description": "[Filter by Custom Fields.](https://clickup.com/api)"
    },
    "due_date_time": {
      "type": "boolean"
    },
    "time_estimate": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "custom_item_id": {
      "type": "number",
      "description": "To create a task that doesn't use a custom task type, either don't include this field in the request body, or send `'null'`. \\\n \\\nTo create this task as a Milestone, send a value of `1`.\\\n \\\nTo use a custom task type, send the custom task type ID as defined in your Workspace, such as `2`."
    },
    "start_date_time": {
      "type": "boolean"
    },
    "check_required_custom_fields": {
      "type": "boolean",
      "description": "When creating a task via API any required Custom Fields are ignored by default (`false`).\\\n \\\nYou can enforce required Custom Fields by including `check_required_custom_fields: true`."
    }
  },
  "x-examples": [
    {
      "name": "New Task Name",
      "tags": [
        "tag name 1"
      ],
      "parent": null,
      "status": "Open",
      "due_date": 1508369194377,
      "links_to": null,
      "priority": 3,
      "assignees": [
        183
      ],
      "notify_all": true,
      "start_date": 1567780450202,
      "description": "New Task Description",
      "custom_fields": [
        {
          "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
          "value": 23
        },
        {
          "id": "03efda77-c7a0-42d3-8afd-fd546353c2f5X",
          "value": "Text field input"
        }
      ],
      "due_date_time": false,
      "time_estimate": 8640000,
      "start_date_time": false,
      "check_required_custom_fields": true
    }
  ]
}
object CreateTaskresponse
{
  "type": "object",
  "title": "CreateTaskresponse.yaml",
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator"
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "custom_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "checklists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "time_spent": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_closed": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "text_content": {
      "type": "string"
    },
    "custom_fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomFields8"
      },
      "description": ""
    },
    "time_estimate": {
      "type": [
        "string",
        "null"
      ]
    },
    "custom_item_id": {
      "type": [
        "number",
        "null"
      ],
      "description": "A `null` value means this item is a task. A value of `1` is a Milestone. Any other number is a custom task type."
    }
  }
}
object CreateTeamViewrequest
{
  "type": "object",
  "title": "CreateTeamViewrequest",
  "example": {
    "name": "New Team View Name",
    "type": "list",
    "divide": {
      "dir": null,
      "field": null,
      "collapsed": []
    },
    "columns": {
      "fields": []
    },
    "filters": {
      "op": "AND",
      "fields": [],
      "search": "",
      "show_closed": false
    },
    "sorting": {
      "fields": []
    },
    "grouping": {
      "dir": 1,
      "field": "status",
      "ignore": false,
      "collapsed": []
    },
    "settings": {
      "me_comments": true,
      "me_subtasks": true,
      "show_images": true,
      "me_checklists": true,
      "show_subtasks": 3,
      "show_assignees": true,
      "show_task_locations": false,
      "show_closed_subtasks": false,
      "collapse_empty_columns": null,
      "show_subtask_parent_names": false
    },
    "team_sidebar": {
      "assignees": [],
      "unassigned_tasks": false,
      "assigned_comments": false
    }
  },
  "required": [
    "name",
    "type",
    "grouping",
    "divide",
    "sorting",
    "filters",
    "columns",
    "team_sidebar",
    "settings"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
    },
    "divide": {
      "$ref": "#/components/schemas/Divide"
    },
    "columns": {
      "$ref": "#/components/schemas/Columns"
    },
    "filters": {
      "$ref": "#/components/schemas/Filters"
    },
    "sorting": {
      "$ref": "#/components/schemas/Sorting"
    },
    "grouping": {
      "$ref": "#/components/schemas/Grouping"
    },
    "settings": {
      "$ref": "#/components/schemas/Settings"
    },
    "team_sidebar": {
      "$ref": "#/components/schemas/TeamSidebar"
    }
  },
  "x-examples": [
    {
      "name": "New Team View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  ]
}
object CreateTeamViewresponse
{
  "type": "object",
  "title": "CreateTeamViewresponse",
  "example": {
    "view": {
      "id": "3c-105X",
      "name": "New Team View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "512X",
        "type": 7
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  },
  "required": [
    "view"
  ],
  "properties": {
    "view": {
      "$ref": "#/components/schemas/View"
    }
  },
  "x-examples": [
    {
      "view": {
        "id": "3c-105X",
        "name": "New Team View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "512X",
          "type": 7
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  ]
}
object CreateTeamrequest
{
  "type": "object",
  "title": "CreateTeamrequest",
  "example": {
    "name": "New team name",
    "members": [
      123456,
      987654
    ]
  },
  "required": [
    "name",
    "members"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "name": "New team name",
      "members": [
        123456,
        987654
      ]
    }
  ]
}
object CreateTeamresponse
{
  "type": "object",
  "title": "CreateTeamresponse",
  "example": {
    "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
    "name": "User group",
    "avatar": {
      "icon": null,
      "color": null,
      "source": null,
      "attachment_id": null
    },
    "handle": "usergroup",
    "userid": 301828,
    "members": [
      {
        "id": 185,
        "color": "#4169E1",
        "email": "sam@example.com",
        "initials": "S",
        "username": "Sam",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      {
        "id": 186,
        "color": "#4169E1",
        "email": "alex@example.com",
        "initials": "A",
        "username": "Alex",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      }
    ],
    "team_id": "301540",
    "initials": "U",
    "date_created": "1640122639829"
  },
  "required": [
    "id",
    "team_id",
    "userid",
    "name",
    "handle",
    "date_created",
    "initials",
    "members",
    "avatar"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "avatar": {
      "$ref": "#/components/schemas/Avatar"
    },
    "handle": {
      "type": "string"
    },
    "userid": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Members1"
      },
      "description": ""
    },
    "team_id": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
      "name": "User group",
      "avatar": {
        "icon": null,
        "color": null,
        "source": null,
        "attachment_id": null
      },
      "handle": "usergroup",
      "userid": 301828,
      "members": [
        {
          "id": 185,
          "color": "#4169E1",
          "email": "sam@example.com",
          "initials": "S",
          "username": "Sam",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        {
          "id": 186,
          "color": "#4169E1",
          "email": "alex@example.com",
          "initials": "A",
          "username": "Alex",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        }
      ],
      "team_id": "301540",
      "initials": "U",
      "date_created": "1640122639829"
    }
  ]
}
object CreateWebhookrequest
{
  "type": "object",
  "title": "CreateWebhookrequest",
  "example": {
    "events": [
      "taskCreated",
      "taskUpdated",
      "taskDeleted",
      "taskPriorityUpdated",
      "taskStatusUpdated",
      "taskAssigneeUpdated",
      "taskDueDateUpdated",
      "taskTagUpdated",
      "taskMoved",
      "taskCommentPosted",
      "taskCommentUpdated",
      "taskTimeEstimateUpdated",
      "taskTimeTrackedUpdated",
      "listCreated",
      "listUpdated",
      "listDeleted",
      "folderCreated",
      "folderUpdated",
      "folderDeleted",
      "spaceCreated",
      "spaceUpdated",
      "spaceDeleted",
      "goalCreated",
      "goalUpdated",
      "goalDeleted",
      "keyResultCreated",
      "keyResultUpdated",
      "keyResultDeleted"
    ],
    "list_id": 9876,
    "task_id": "abc1234",
    "endpoint": "https://yourdomain.com/webhook",
    "space_id": 1234,
    "folder_id": 5678
  },
  "required": [
    "endpoint",
    "events"
  ],
  "properties": {
    "events": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "list_id": {
      "type": "integer"
    },
    "task_id": {
      "type": "string"
    },
    "endpoint": {
      "type": "string"
    },
    "space_id": {
      "type": "integer"
    },
    "folder_id": {
      "type": "integer"
    }
  },
  "x-examples": [
    {
      "events": [
        "taskCreated",
        "taskUpdated",
        "taskDeleted",
        "taskPriorityUpdated",
        "taskStatusUpdated",
        "taskAssigneeUpdated",
        "taskDueDateUpdated",
        "taskTagUpdated",
        "taskMoved",
        "taskCommentPosted",
        "taskCommentUpdated",
        "taskTimeEstimateUpdated",
        "taskTimeTrackedUpdated",
        "listCreated",
        "listUpdated",
        "listDeleted",
        "folderCreated",
        "folderUpdated",
        "folderDeleted",
        "spaceCreated",
        "spaceUpdated",
        "spaceDeleted",
        "goalCreated",
        "goalUpdated",
        "goalDeleted",
        "keyResultCreated",
        "keyResultUpdated",
        "keyResultDeleted"
      ],
      "list_id": 9876,
      "task_id": "abc1234",
      "endpoint": "https://yourdomain.com/webhook",
      "space_id": 1234,
      "folder_id": 5678
    }
  ]
}
object CreateWebhookresponse
{
  "type": "object",
  "title": "CreateWebhookresponse",
  "example": {
    "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
    "webhook": {
      "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
      "events": [
        "taskCreated",
        "taskUpdated",
        "taskDeleted",
        "taskPriorityUpdated",
        "taskStatusUpdated",
        "taskAssigneeUpdated",
        "taskDueDateUpdated",
        "taskTagUpdated",
        "taskMoved",
        "taskCommentPosted",
        "taskCommentUpdated",
        "taskTimeEstimateUpdated",
        "taskTimeTrackedUpdated",
        "listCreated",
        "listUpdated",
        "listDeleted",
        "folderCreated",
        "folderUpdated",
        "folderDeleted",
        "spaceCreated",
        "spaceUpdated",
        "spaceDeleted",
        "goalCreated",
        "goalUpdated",
        "goalDeleted",
        "keyResultCreated",
        "keyResultUpdated",
        "keyResultDeleted"
      ],
      "health": {
        "status": "active",
        "fail_count": 0
      },
      "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
      "userid": 183,
      "list_id": null,
      "task_id": null,
      "team_id": 108,
      "endpoint": "https://yourdomain.com/webhook",
      "space_id": null,
      "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
      "folder_id": null
    }
  },
  "required": [
    "id",
    "webhook"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "webhook": {
      "$ref": "#/components/schemas/Webhook"
    }
  },
  "x-examples": [
    {
      "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
      "webhook": {
        "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
        "events": [
          "taskCreated",
          "taskUpdated",
          "taskDeleted",
          "taskPriorityUpdated",
          "taskStatusUpdated",
          "taskAssigneeUpdated",
          "taskDueDateUpdated",
          "taskTagUpdated",
          "taskMoved",
          "taskCommentPosted",
          "taskCommentUpdated",
          "taskTimeEstimateUpdated",
          "taskTimeTrackedUpdated",
          "listCreated",
          "listUpdated",
          "listDeleted",
          "folderCreated",
          "folderUpdated",
          "folderDeleted",
          "spaceCreated",
          "spaceUpdated",
          "spaceDeleted",
          "goalCreated",
          "goalUpdated",
          "goalDeleted",
          "keyResultCreated",
          "keyResultUpdated",
          "keyResultDeleted"
        ],
        "health": {
          "status": "active",
          "fail_count": 0
        },
        "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
        "userid": 183,
        "list_id": null,
        "task_id": null,
        "team_id": 108,
        "endpoint": "https://yourdomain.com/webhook",
        "space_id": null,
        "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
        "folder_id": null
      }
    }
  ]
}
object Createatimeentryrequest
{
  "type": "object",
  "title": "Createatimeentryrequest",
  "example": {
    "end": 1595282660000,
    "tid": "task_id",
    "tags": [
      {
        "name": "name of tag",
        "tag_bg": "#BF55EC",
        "tag_fg": "#FFFFFF"
      }
    ],
    "start": 1595282645000,
    "assignee": 1,
    "billable": true,
    "duration": 50000,
    "description": "from api"
  },
  "required": [
    "start",
    "duration"
  ],
  "properties": {
    "end": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "tid": {
      "type": "string"
    },
    "stop": {
      "type": "integer",
      "description": "The `duration` parameter can be used instead of the `stop` parameter. ",
      "contentEncoding": "int64"
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags6"
      },
      "description": "Users on the Business Plan and above can include a time tracking label."
    },
    "start": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "assignee": {
      "type": "integer",
      "description": "Workspace owners and admins can include any user id. Workspace members can only include their own user id.",
      "contentEncoding": "int32"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "integer",
      "description": "When there are values for both `start` and `end`, `duration` is ignored. The `stop` parameter can be used instead of the `duration` parameter.",
      "contentEncoding": "int32"
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "end": 1595282660000,
      "tid": "task_id",
      "tags": [
        {
          "name": "name of tag",
          "tag_bg": "#BF55EC",
          "tag_fg": "#FFFFFF"
        }
      ],
      "start": 1595282645000,
      "assignee": 1,
      "billable": true,
      "duration": 50000,
      "description": "from api"
    }
  ]
}
object Createatimeentryresponse
{
  "type": "object",
  "title": "Createatimeentryresponse",
  "example": {
    "tid": "task_id",
    "tags": [
      {
        "name": "name of tag",
        "tag_bg": "#BF55EC",
        "tag_fg": "#BF55EC"
      }
    ],
    "start": 1595282645000,
    "assignee": 1,
    "billable": true,
    "duration": 50000,
    "description": "from api"
  },
  "required": [
    "description",
    "tags",
    "start",
    "billable",
    "duration",
    "assignee",
    "tid"
  ],
  "properties": {
    "tid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags6"
      },
      "description": ""
    },
    "start": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "assignee": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "tid": "task_id",
      "tags": [
        {
          "name": "name of tag",
          "tag_bg": "#BF55EC",
          "tag_fg": "#BF55EC"
        }
      ],
      "start": 1595282645000,
      "assignee": 1,
      "billable": true,
      "duration": 50000,
      "description": "from api"
    }
  ]
}
object Creator
{
  "type": "object",
  "title": "Creator",
  "example": {
    "id": 183,
    "color": "#827718",
    "username": "John Doe",
    "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
  },
  "required": [
    "id",
    "username",
    "color",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#827718",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    }
  ]
}
object Creator5
{
  "type": "object",
  "title": "Creator5",
  "example": {
    "id": 123,
    "color": "#000000",
    "email": "johndoe@website.com",
    "username": "John Doe",
    "profilePicture": "https://clickup.com/avatar.jpg"
  },
  "required": [
    "id",
    "username",
    "color",
    "email",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 123,
      "color": "#000000",
      "email": "johndoe@website.com",
      "username": "John Doe",
      "profilePicture": "https://clickup.com/avatar.jpg"
    }
  ]
}
object CurrentStatus
{
  "type": "object",
  "title": "CurrentStatus",
  "example": {
    "color": "#d3d3d3",
    "status": "open",
    "total_time": {
      "since": "1604004423494",
      "by_minute": 21708
    }
  },
  "required": [
    "status",
    "color",
    "total_time"
  ],
  "properties": {
    "color": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "total_time": {
      "$ref": "#/components/schemas/TotalTime"
    }
  },
  "x-examples": [
    {
      "color": "#d3d3d3",
      "status": "open",
      "total_time": {
        "since": "1604004423494",
        "by_minute": 21708
      }
    }
  ]
}
object CustomFields
{
  "type": "object",
  "title": "CustomFields",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object CustomFields6
{
  "type": "object",
  "title": "CustomFields6",
  "example": {
    "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
    "value": 23
  },
  "required": [
    "id",
    "value"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "value": {
      "oneOf": [
        {
          "type": "integer",
          "contentEncoding": "int32"
        },
        {
          "type": "string"
        }
      ]
    }
  },
  "x-examples": [
    {
      "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
      "value": 23
    }
  ]
}
object CustomFields7
{
  "type": "object",
  "title": "CustomFields7",
  "example": {
    "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
    "name": "My Number field",
    "type": "checkbox",
    "value": "23",
    "required": true,
    "type_config": {},
    "date_created": "1622176979540",
    "hide_from_guests": false
  },
  "required": [
    "id",
    "name",
    "type",
    "type_config",
    "date_created",
    "hide_from_guests",
    "required"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "required": {
      "type": "boolean"
    },
    "type_config": {
      "$ref": "#/components/schemas/TypeConfig1"
    },
    "date_created": {
      "type": "string"
    },
    "hide_from_guests": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
      "name": "My Number field",
      "type": "checkbox",
      "value": "23",
      "required": true,
      "type_config": {},
      "date_created": "1622176979540",
      "hide_from_guests": false
    }
  ]
}
object CustomFields8
{
  "type": "object",
  "title": "CustomFields8",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "value": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/Value"
        },
        {
          "$ref": "#/components/schemas/Value1"
        },
        {
          "$ref": "#/components/schemas/Value2"
        }
      ],
      "example": {
        "id": 183,
        "color": "#7b68ee",
        "email": "john@example.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": null
      },
      "x-examples": [
        {
          "id": 183,
          "color": "#7b68ee",
          "email": "john@example.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": null
        },
        {
          "value": null
        }
      ]
    },
    "required": {
      "type": "boolean"
    },
    "type_config": {
      "$ref": "#/components/schemas/TypeConfig1"
    },
    "date_created": {
      "type": "string"
    },
    "hide_from_guests": {
      "type": "boolean"
    }
  }
}
object CustomFields9
{
  "type": "object",
  "title": "CustomFields9",
  "example": {
    "id": "be43f58e-989e-4233-9f25-27584f094b74X",
    "name": "Location type Custom Field",
    "type": "location",
    "required": false,
    "type_config": {},
    "date_created": "1617765143523",
    "hide_from_guests": false
  },
  "required": [
    "id",
    "name",
    "type",
    "type_config",
    "date_created",
    "hide_from_guests",
    "required"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "required": {
      "type": "boolean"
    },
    "type_config": {
      "type": "object"
    },
    "date_created": {
      "type": "string"
    },
    "hide_from_guests": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "be43f58e-989e-4233-9f25-27584f094b74X",
      "name": "Location type Custom Field",
      "type": "location",
      "required": false,
      "type_config": {},
      "date_created": "1617765143523",
      "hide_from_guests": false
    }
  ]
}
object CustomFieldsRemoveFieldValueResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object CustomFieldsSetFieldValueResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object CustomItem
{
  "type": "object",
  "title": "Custom Item",
  "example": {
    "id": 1300,
    "name": "Bug",
    "description": "Custom task type for bugs.",
    "name_plural": "Bugs"
  },
  "properties": {
    "id": {
      "type": "integer",
      "description": "Custom task type ID.",
      "contentEncoding": "int32"
    },
    "name": {
      "type": "string",
      "description": "Custom task type name."
    },
    "description": {
      "type": "string",
      "description": "Custom task type description."
    },
    "name_plural": {
      "type": "string",
      "description": "Custom task type plural name."
    }
  },
  "x-examples": [
    {
      "id": 1300,
      "name": "Bug",
      "description": "Custom task type for bugs.",
      "name_plural": "Bugs"
    }
  ]
}
object CustomItems
{
  "type": "object",
  "title": "CustomItems",
  "example": {
    "enabled": false
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": false
    }
  ]
}
object CustomRole
{
  "type": "object",
  "title": "CustomRole",
  "example": {
    "id": 12345,
    "name": "guest custom"
  },
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 12345,
      "name": "guest custom"
    }
  ]
}
object CustomRole2
{
  "type": "object",
  "title": "CustomRole2",
  "example": {
    "id": 4547089,
    "name": "guest custom",
    "members": [
      12345,
      67899
    ],
    "team_id": "301539",
    "date_created": "1651189835671",
    "inherited_role": 4
  },
  "required": [
    "id",
    "team_id",
    "name",
    "inherited_role",
    "date_created",
    "members"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "name": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    },
    "team_id": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    },
    "inherited_role": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": 4547089,
      "name": "guest custom",
      "members": [
        12345,
        67899
      ],
      "team_id": "301539",
      "date_created": "1651189835671",
      "inherited_role": 4
    }
  ]
}
object Data
{
  "type": "object",
  "title": "Data",
  "example": {
    "at": "1595293042560",
    "id": "timer_idX",
    "wid": "workspace_id",
    "tags": [],
    "task": {
      "id": "task_idX",
      "name": "task_name",
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      }
    },
    "user": {
      "id": 300528,
      "color": "#08c7e0",
      "email": "test@gmail.com",
      "initials": "JK",
      "username": "first_name last_name",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
    },
    "start": "1595293042560",
    "billable": false,
    "duration": -25655,
    "description": ""
  },
  "required": [
    "id",
    "task",
    "wid",
    "user",
    "billable",
    "start",
    "duration",
    "description",
    "tags",
    "at"
  ],
  "properties": {
    "at": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "wid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "task": {
      "$ref": "#/components/schemas/Task5"
    },
    "user": {
      "$ref": "#/components/schemas/User2"
    },
    "start": {
      "type": "string"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "at": "1595293042560",
      "id": "timer_idX",
      "wid": "workspace_id",
      "tags": [],
      "task": {
        "id": "task_idX",
        "name": "task_name",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        }
      },
      "user": {
        "id": 300528,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1595293042560",
      "billable": false,
      "duration": -25655,
      "description": ""
    }
  ]
}
object Data1
{
  "type": "object",
  "title": "Data1",
  "example": {
    "name": "name of tag",
    "tag_bg": "#BF55EC",
    "tag_fg": "#FFFFFF",
    "creator": 1
  },
  "required": [
    "name",
    "creator",
    "tag_bg",
    "tag_fg"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "tag_bg": {
      "type": "string"
    },
    "tag_fg": {
      "type": "string"
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "name": "name of tag",
      "tag_bg": "#BF55EC",
      "tag_fg": "#FFFFFF",
      "creator": 1
    }
  ]
}
object Data2
{
  "type": "object",
  "title": "Data2",
  "example": {
    "at": 1595289452790,
    "id": "timer_idX",
    "wid": "workspace_id",
    "tags": [],
    "task": {
      "id": "task_idX",
      "name": "test task",
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      "custom_type": null
    },
    "user": {
      "id": 1,
      "color": "#08c7e0",
      "email": "test@gmail.com",
      "initials": "JK",
      "username": "first_name last_name",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
    },
    "start": "1595289395842",
    "billable": false,
    "duration": -53,
    "description": ""
  },
  "required": [
    "id",
    "task",
    "wid",
    "user",
    "billable",
    "start",
    "duration",
    "description",
    "tags",
    "at"
  ],
  "properties": {
    "at": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "id": {
      "type": "string"
    },
    "wid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "task": {
      "$ref": "#/components/schemas/Task6"
    },
    "user": {
      "$ref": "#/components/schemas/User2"
    },
    "start": {
      "type": "string"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "at": 1595289452790,
      "id": "timer_idX",
      "wid": "workspace_id",
      "tags": [],
      "task": {
        "id": "task_idX",
        "name": "test task",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        "custom_type": null
      },
      "user": {
        "id": 1,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1595289395842",
      "billable": false,
      "duration": -53,
      "description": ""
    }
  ]
}
object Data3
{
  "type": "object",
  "title": "Data3",
  "example": {
    "at": 1595289452790,
    "id": "timer_idX",
    "end": 1595289452790,
    "wid": "workspace_id",
    "tags": [],
    "task": {
      "id": "task_idX",
      "name": "test task",
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      "custom_type": null
    },
    "user": {
      "id": 1,
      "color": "#08c7e0",
      "email": "test@gmail.com",
      "initials": "JK",
      "username": "first_name last_name",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
    },
    "start": "1595289395842",
    "source": "clickup",
    "billable": false,
    "duration": 56948,
    "description": ""
  },
  "required": [
    "id",
    "task",
    "wid",
    "user",
    "billable",
    "start",
    "end",
    "duration",
    "description",
    "tags",
    "source",
    "at"
  ],
  "properties": {
    "at": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "id": {
      "type": "string"
    },
    "end": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "wid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "task": {
      "$ref": "#/components/schemas/Task6"
    },
    "user": {
      "$ref": "#/components/schemas/User2"
    },
    "start": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "at": 1595289452790,
      "id": "timer_idX",
      "end": 1595289452790,
      "wid": "workspace_id",
      "tags": [],
      "task": {
        "id": "task_idX",
        "name": "test task",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        "custom_type": null
      },
      "user": {
        "id": 1,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1595289395842",
      "source": "clickup",
      "billable": false,
      "duration": 56948,
      "description": ""
    }
  ]
}
object Datum
{
  "type": "object",
  "title": "Datum",
  "example": {
    "time": 1000000,
    "user": {
      "id": 1,
      "color": "#795548",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": null
    },
    "intervals": [
      {
        "id": "318X",
        "end": null,
        "time": "1000000",
        "start": null,
        "source": "chrome",
        "date_added": "1569983937761"
      }
    ]
  },
  "required": [
    "user",
    "time",
    "intervals"
  ],
  "properties": {
    "time": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "user": {
      "$ref": "#/components/schemas/User13"
    },
    "intervals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Interval"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "time": 1000000,
      "user": {
        "id": 1,
        "color": "#795548",
        "email": "johndoe@gmail.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": null
      },
      "intervals": [
        {
          "id": "318X",
          "end": null,
          "time": "1000000",
          "start": null,
          "source": "chrome",
          "date_added": "1569983937761"
        }
      ]
    }
  ]
}
object Datum1
{
  "type": "object",
  "title": "Datum1",
  "example": {
    "at": "1592845899021",
    "id": "1963465985517105840X",
    "end": "1592845899021",
    "wid": "300702",
    "tags": [],
    "task": {
      "id": "1vwwavvX",
      "name": "woof",
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "open yes",
        "orderindex": 0
      },
      "custom_id": "JOSH-917",
      "custom_type": null
    },
    "user": {
      "id": 1,
      "color": "#08c7e0",
      "email": "test@gmail.com",
      "initials": "JK",
      "username": "first_name last_name",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/1_HHk.jpg"
    },
    "start": "1592841559129",
    "source": "clickup",
    "billable": false,
    "duration": "4339892",
    "task_url": "https://staging.clickup.com/t/1vwwavv",
    "task_tags": [
      {
        "name": "content-request",
        "tag_bg": "#2ecd6f",
        "tag_fg": "#800000",
        "creator": 301828
      },
      {
        "name": "marketing-okr",
        "tag_bg": "#7C4DFF",
        "tag_fg": "#800000",
        "creator": 301828
      }
    ],
    "description": "",
    "task_location": {
      "list_id": 1560300071,
      "space_id": 22800253,
      "folder_id": 468300080,
      "list_name": "List",
      "space_name": "Space",
      "folder_name": "Folder"
    }
  },
  "required": [
    "id",
    "task",
    "wid",
    "user",
    "billable",
    "start",
    "end",
    "duration",
    "description",
    "tags",
    "source",
    "at",
    "task_location",
    "task_tags",
    "task_url"
  ],
  "properties": {
    "at": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "end": {
      "type": "string"
    },
    "wid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "task": {
      "$ref": "#/components/schemas/Task4"
    },
    "user": {
      "$ref": "#/components/schemas/User2"
    },
    "start": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "string"
    },
    "task_url": {
      "type": "string"
    },
    "task_tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TaskTag"
      },
      "description": ""
    },
    "description": {
      "type": "string"
    },
    "task_location": {
      "$ref": "#/components/schemas/TaskLocation"
    }
  },
  "x-examples": [
    {
      "at": "1592845899021",
      "id": "1963465985517105840X",
      "end": "1592845899021",
      "wid": "300702",
      "tags": [],
      "task": {
        "id": "1vwwavvX",
        "name": "woof",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "open yes",
          "orderindex": 0
        },
        "custom_id": "JOSH-917",
        "custom_type": null
      },
      "user": {
        "id": 1,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1592841559129",
      "source": "clickup",
      "billable": false,
      "duration": "4339892",
      "task_url": "https://staging.clickup.com/t/1vwwavv",
      "task_tags": [
        {
          "name": "content-request",
          "tag_bg": "#2ecd6f",
          "tag_fg": "#800000",
          "creator": 301828
        },
        {
          "name": "marketing-okr",
          "tag_bg": "#7C4DFF",
          "tag_fg": "#800000",
          "creator": 301828
        }
      ],
      "description": "",
      "task_location": {
        "list_id": 1560300071,
        "space_id": 22800253,
        "folder_id": 468300080,
        "list_name": "List",
        "space_name": "Space",
        "folder_name": "Folder"
      }
    }
  ]
}
object Datum2
{
  "type": "object",
  "title": "Datum2",
  "example": {
    "at": "1592845899021",
    "id": "timer_idX",
    "end": "1592845899021",
    "wid": "workspace_id",
    "tags": [],
    "user": {
      "id": 1,
      "color": "#08c7e0",
      "email": "test@gmail.com",
      "initials": "JK",
      "username": "first_name last_name",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
    },
    "start": "1592841559129",
    "source": "clickup",
    "billable": false,
    "duration": "4339892",
    "task_url": "https://staging.clickup.com/t/rnmuwz7",
    "task_tags": [
      {
        "name": "content-request",
        "tag_bg": "#2ecd6f",
        "tag_fg": "#800000",
        "creator": 301828
      },
      {
        "name": "marketing-okr",
        "tag_bg": "#7C4DFF",
        "tag_fg": "#800000",
        "creator": 301828
      }
    ],
    "description": "",
    "task_location": {
      "list_id": 1560300071,
      "space_id": 22800253,
      "folder_id": 468300080,
      "list_name": "List",
      "space_name": "Space",
      "folder_name": "Folder"
    }
  },
  "required": [
    "id",
    "wid",
    "user",
    "billable",
    "start",
    "end",
    "duration",
    "description",
    "tags",
    "source",
    "at",
    "task_location",
    "task_tags",
    "task_url"
  ],
  "properties": {
    "at": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "end": {
      "type": "string"
    },
    "wid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "user": {
      "$ref": "#/components/schemas/User2"
    },
    "start": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "string"
    },
    "task_url": {
      "type": "string"
    },
    "task_tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TaskTag"
      },
      "description": ""
    },
    "description": {
      "type": "string"
    },
    "task_location": {
      "$ref": "#/components/schemas/TaskLocation"
    }
  },
  "x-examples": [
    {
      "at": "1592845899021",
      "id": "timer_idX",
      "end": "1592845899021",
      "wid": "workspace_id",
      "tags": [],
      "user": {
        "id": 1,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1592841559129",
      "source": "clickup",
      "billable": false,
      "duration": "4339892",
      "task_url": "https://staging.clickup.com/t/rnmuwz7",
      "task_tags": [
        {
          "name": "content-request",
          "tag_bg": "#2ecd6f",
          "tag_fg": "#800000",
          "creator": 301828
        },
        {
          "name": "marketing-okr",
          "tag_bg": "#7C4DFF",
          "tag_fg": "#800000",
          "creator": 301828
        }
      ],
      "description": "",
      "task_location": {
        "list_id": 1560300071,
        "space_id": 22800253,
        "folder_id": 468300080,
        "list_name": "List",
        "space_name": "Space",
        "folder_name": "Folder"
      }
    }
  ]
}
object DeleteSpaceTagrequest
{
  "type": "object",
  "title": "DeleteSpaceTagrequest",
  "example": {
    "tag": {
      "name": "Tag name",
      "tag_bg": "#000000",
      "tag_fg": "#000000"
    }
  },
  "required": [
    "tag"
  ],
  "properties": {
    "tag": {
      "$ref": "#/components/schemas/Tag"
    }
  },
  "x-examples": [
    {
      "tag": {
        "name": "Tag name",
        "tag_bg": "#000000",
        "tag_fg": "#000000"
      }
    }
  ]
}
object DeleteTaskLinkresponse
{
  "type": "object",
  "title": "DeleteTaskLinkresponse",
  "example": {
    "task": {
      "id": "9hvX",
      "url": "https://app.clickup.com/t/9hx",
      "list": {
        "id": "123X"
      },
      "name": "Task Name",
      "tags": [],
      "space": {
        "id": "789X"
      },
      "folder": {
        "id": "456X"
      },
      "parent": null,
      "status": {
        "type": "custom",
        "color": "#d3d3d3",
        "status": "in progress",
        "orderindex": 1
      },
      "creator": {
        "id": 183,
        "color": "#827718",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "due_date": null,
      "priority": null,
      "assignees": [],
      "checklists": [],
      "orderindex": "1.00000000000000000000000000000000",
      "start_date": null,
      "time_spent": null,
      "date_closed": null,
      "date_created": "1567780450202",
      "date_updated": "1567780450202",
      "linked_tasks": [],
      "time_estimate": null
    }
  },
  "required": [
    "task"
  ],
  "properties": {
    "task": {
      "$ref": "#/components/schemas/Task1"
    }
  },
  "x-examples": [
    {
      "task": {
        "id": "9hvX",
        "url": "https://app.clickup.com/t/9hx",
        "list": {
          "id": "123X"
        },
        "name": "Task Name",
        "tags": [],
        "space": {
          "id": "789X"
        },
        "folder": {
          "id": "456X"
        },
        "parent": null,
        "status": {
          "type": "custom",
          "color": "#d3d3d3",
          "status": "in progress",
          "orderindex": 1
        },
        "creator": {
          "id": 183,
          "color": "#827718",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "due_date": null,
        "priority": null,
        "assignees": [],
        "checklists": [],
        "orderindex": "1.00000000000000000000000000000000",
        "start_date": null,
        "time_spent": null,
        "date_closed": null,
        "date_created": "1567780450202",
        "date_updated": "1567780450202",
        "linked_tasks": [],
        "time_estimate": null
      }
    }
  ]
}
object DeleteatimeEntryresponse
{
  "type": "object",
  "title": "DeleteatimeEntryresponse",
  "example": {
    "data": {
      "at": 1595289452790,
      "id": "timer_idX",
      "end": 1595289452790,
      "wid": "workspace_id",
      "tags": [],
      "task": {
        "id": "task_idX",
        "name": "test task",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        "custom_type": null
      },
      "user": {
        "id": 1,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1595289395842",
      "source": "clickup",
      "billable": false,
      "duration": 56948,
      "description": ""
    }
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "$ref": "#/components/schemas/Data3"
    }
  },
  "x-examples": [
    {
      "data": {
        "at": 1595289452790,
        "id": "timer_idX",
        "end": 1595289452790,
        "wid": "workspace_id",
        "tags": [],
        "task": {
          "id": "task_idX",
          "name": "test task",
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "to do",
            "orderindex": 0
          },
          "custom_type": null
        },
        "user": {
          "id": 1,
          "color": "#08c7e0",
          "email": "test@gmail.com",
          "initials": "JK",
          "username": "first_name last_name",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
        },
        "start": "1595289395842",
        "source": "clickup",
        "billable": false,
        "duration": 56948,
        "description": ""
      }
    }
  ]
}
object DependencyWarning
{
  "type": "object",
  "title": "DependencyWarning",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object Divide
{
  "type": "object",
  "title": "Divide",
  "example": {
    "dir": null,
    "field": null,
    "collapsed": []
  },
  "required": [
    "collapsed"
  ],
  "properties": {
    "dir": {
      "type": [
        "null"
      ]
    },
    "field": {
      "type": [
        "null"
      ]
    },
    "collapsed": {
      "type": [
        "boolean"
      ]
    }
  },
  "x-examples": [
    {
      "dir": null,
      "field": null,
      "collapsed": []
    }
  ]
}
object DueDates
{
  "type": "object",
  "title": "DueDates",
  "example": {
    "enabled": true,
    "start_date": false,
    "remap_due_dates": true,
    "remap_closed_due_date": false
  },
  "required": [
    "enabled",
    "start_date",
    "remap_due_dates",
    "remap_closed_due_date"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "start_date": {
      "type": "boolean"
    },
    "remap_due_dates": {
      "type": "boolean"
    },
    "remap_closed_due_date": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true,
      "start_date": false,
      "remap_due_dates": true,
      "remap_closed_due_date": false
    }
  ]
}
object EditChecklistItemrequest
{
  "type": "object",
  "title": "EditChecklistItemrequest",
  "example": {
    "name": "Updated Checklist Item",
    "parent": null,
    "assignee": null,
    "resolved": true
  },
  "properties": {
    "name": {
      "type": "string"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ],
      "description": "To nest a checklist item under another checklist item, include the other item's `checklist_item_id`."
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "resolved": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "Updated Checklist Item",
      "parent": null,
      "assignee": null,
      "resolved": true
    }
  ]
}
object EditChecklistItemresponse
{
  "type": "object",
  "title": "EditChecklistItemresponse",
  "example": {
    "checklist": {
      "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
      "name": "Checklist",
      "items": [
        {
          "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
          "name": "Updated Checklist Item",
          "parent": null,
          "assignee": null,
          "children": [],
          "resolved": true,
          "orderindex": 0,
          "date_created": "1567711566859"
        }
      ],
      "task_id": "9hv",
      "resolved": 1,
      "orderindex": 0,
      "unresolved": 0,
      "date_created": "1567711563204"
    }
  },
  "required": [
    "checklist"
  ],
  "properties": {
    "checklist": {
      "$ref": "#/components/schemas/Checklist2"
    }
  },
  "x-examples": [
    {
      "checklist": {
        "id": "b955c4dc-b8a8-48d8-a0c6-b4200788a683X",
        "name": "Checklist",
        "items": [
          {
            "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
            "name": "Updated Checklist Item",
            "parent": null,
            "assignee": null,
            "children": [],
            "resolved": true,
            "orderindex": 0,
            "date_created": "1567711566859"
          }
        ],
        "task_id": "9hv",
        "resolved": 1,
        "orderindex": 0,
        "unresolved": 0,
        "date_created": "1567711563204"
      }
    }
  ]
}
object EditChecklistrequest
{
  "type": "object",
  "title": "EditChecklistrequest",
  "example": {
    "name": "Updated Checklist",
    "position": 1
  },
  "properties": {
    "name": {
      "type": "string"
    },
    "position": {
      "type": "integer",
      "description": "Position refers to the order of appearance of checklists on a task.\\\n \\\nTo set a checklist to appear at the top of the checklists section of a task, use `\"position\": 0`.",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "name": "Updated Checklist",
      "position": 1
    }
  ]
}
object EditGuestOnWorkspacerequest
{
  "type": "object",
  "title": "EditGuestOnWorkspacerequest",
  "example": {
    "username": "Guest User",
    "can_edit_tags": true,
    "custom_role_id": 12345,
    "can_create_views": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "username",
    "can_edit_tags",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_create_views",
    "custom_role_id"
  ],
  "properties": {
    "username": {
      "type": "string"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "custom_role_id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "can_create_views": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "username": "Guest User",
      "can_edit_tags": true,
      "custom_role_id": 12345,
      "can_create_views": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object EditGuestOnWorkspaceresponse
{
  "type": "object",
  "title": "EditGuestOnWorkspaceresponse",
  "example": {
    "guest": {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "custom_role": {
          "id": 12345,
          "name": "guest custom"
        },
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_create_views": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  },
  "required": [
    "guest"
  ],
  "properties": {
    "guest": {
      "$ref": "#/components/schemas/Guest"
    }
  },
  "x-examples": [
    {
      "guest": {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "custom_role": {
            "id": 12345,
            "name": "guest custom"
          },
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_create_views": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  ]
}
object EditKeyResultrequest
{
  "type": "object",
  "title": "EditKeyResultrequest",
  "example": {
    "note": "Target achieved",
    "steps_current": 5
  },
  "required": [
    "steps_current",
    "note"
  ],
  "properties": {
    "note": {
      "type": "string"
    },
    "steps_current": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "note": "Target achieved",
      "steps_current": 5
    }
  ]
}
object EditKeyResultresponse
{
  "type": "object",
  "title": "EditKeyResultresponse",
  "example": {
    "key_result": {
      "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
      "name": "New Key Result Name",
      "type": "number",
      "unit": "km",
      "owners": [
        {
          "id": 183,
          "color": "#827718",
          "email": "example@email.com",
          "initials": "JK",
          "username": "John Doe",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
        }
      ],
      "creator": 183,
      "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
      "task_ids": [],
      "completed": false,
      "last_action": {
        "id": "e889858b-a023-46cc-968a-cac32fd04c1eX",
        "note": "Target achieved",
        "userid": 183,
        "steps_taken": null,
        "steps_before": null,
        "date_modified": "1568122776851",
        "key_result_id": "19c7a55e-537e-4bc9-b741-08df05a5bda8",
        "steps_current": null,
        "steps_taken_float": 5,
        "steps_before_float": 0,
        "steps_current_float": null
      },
      "date_created": "1568062902048",
      "goal_pretty_id": "6",
      "subcategory_ids": [],
      "percent_completed": null
    }
  },
  "required": [
    "key_result"
  ],
  "properties": {
    "key_result": {
      "$ref": "#/components/schemas/KeyResult1"
    }
  },
  "x-examples": [
    {
      "key_result": {
        "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
        "name": "New Key Result Name",
        "type": "number",
        "unit": "km",
        "owners": [
          {
            "id": 183,
            "color": "#827718",
            "email": "example@email.com",
            "initials": "JK",
            "username": "John Doe",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
          }
        ],
        "creator": 183,
        "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
        "task_ids": [],
        "completed": false,
        "last_action": {
          "id": "e889858b-a023-46cc-968a-cac32fd04c1eX",
          "note": "Target achieved",
          "userid": 183,
          "steps_taken": null,
          "steps_before": null,
          "date_modified": "1568122776851",
          "key_result_id": "19c7a55e-537e-4bc9-b741-08df05a5bda8",
          "steps_current": null,
          "steps_taken_float": 5,
          "steps_before_float": 0,
          "steps_current_float": null
        },
        "date_created": "1568062902048",
        "goal_pretty_id": "6",
        "subcategory_ids": [],
        "percent_completed": null
      }
    }
  ]
}
object EditSpaceTagrequest
{
  "type": "object",
  "title": "EditSpaceTagrequest",
  "example": {
    "tag": {
      "name": "Updated Tag",
      "bg_color": "#ffffff",
      "fg_color": "#ffffff"
    }
  },
  "required": [
    "tag"
  ],
  "properties": {
    "tag": {
      "$ref": "#/components/schemas/Tag1"
    }
  },
  "x-examples": [
    {
      "tag": {
        "name": "Updated Tag",
        "bg_color": "#ffffff",
        "fg_color": "#ffffff"
      }
    }
  ]
}
object EditSpaceTagresponse
{
  "type": "object",
  "title": "EditSpaceTagresponse",
  "example": {
    "tag": {
      "name": "Updated Tag",
      "bg_color": "#ffffff",
      "fg_color": "#ffffff"
    }
  },
  "required": [
    "tag"
  ],
  "properties": {
    "tag": {
      "$ref": "#/components/schemas/Tag1"
    }
  },
  "x-examples": [
    {
      "tag": {
        "name": "Updated Tag",
        "bg_color": "#ffffff",
        "fg_color": "#ffffff"
      }
    }
  ]
}
object EditUserOnWorkspacerequest
{
  "type": "object",
  "title": "EditUserOnWorkspacerequest",
  "example": {
    "admin": false,
    "username": "User Name",
    "custom_role_id": 998877
  },
  "required": [
    "username",
    "admin",
    "custom_role_id"
  ],
  "properties": {
    "admin": {
      "type": "boolean"
    },
    "username": {
      "type": "string"
    },
    "custom_role_id": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "admin": false,
      "username": "User Name",
      "custom_role_id": 998877
    }
  ]
}
object EditUserOnWorkspaceresponse
{
  "type": "object",
  "title": "EditUserOnWorkspaceresponse",
  "example": {
    "member": {
      "user": {
        "id": 184,
        "role": 3,
        "color": null,
        "email": "user@example.com",
        "initials": "UN",
        "username": "User Name",
        "custom_role": {
          "id": 998877,
          "name": "member custom"
        },
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      }
    }
  },
  "required": [
    "member"
  ],
  "properties": {
    "member": {
      "$ref": "#/components/schemas/Member7"
    }
  },
  "x-examples": [
    {
      "member": {
        "user": {
          "id": 184,
          "role": 3,
          "color": null,
          "email": "user@example.com",
          "initials": "UN",
          "username": "User Name",
          "custom_role": {
            "id": 998877,
            "name": "member custom"
          },
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        }
      }
    }
  ]
}
object Edittimetrackedrequest
{
  "type": "object",
  "title": "Edittimetrackedrequest",
  "example": {
    "end": 1508369194377,
    "time": 8640000,
    "start": 1567780450202
  },
  "required": [
    "start",
    "end",
    "time"
  ],
  "properties": {
    "end": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "time": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start": {
      "type": "integer",
      "contentEncoding": "int64"
    }
  },
  "x-examples": [
    {
      "end": 1508369194377,
      "time": 8640000,
      "start": 1567780450202
    }
  ]
}
object Emails
{
  "type": "object",
  "title": "Emails",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object Features
{
  "type": "object",
  "title": "Features",
  "example": {
    "tags": {
      "enabled": true
    },
    "due_dates": {
      "enabled": true,
      "start_date": false,
      "remap_due_dates": true,
      "remap_closed_due_date": false
    },
    "checklists": {
      "enabled": true
    },
    "portfolios": {
      "enabled": true
    },
    "custom_fields": {
      "enabled": true
    },
    "time_tracking": {
      "enabled": false
    },
    "time_estimates": {
      "enabled": true
    },
    "dependency_warning": {
      "enabled": true
    },
    "remap_dependencies": {
      "enabled": true
    }
  },
  "required": [
    "due_dates",
    "time_tracking",
    "tags",
    "time_estimates",
    "checklists",
    "custom_fields",
    "remap_dependencies",
    "dependency_warning",
    "portfolios"
  ],
  "properties": {
    "tags": {
      "$ref": "#/components/schemas/Tags"
    },
    "due_dates": {
      "$ref": "#/components/schemas/DueDates"
    },
    "checklists": {
      "$ref": "#/components/schemas/Checklists"
    },
    "portfolios": {
      "$ref": "#/components/schemas/Portfolios"
    },
    "custom_fields": {
      "$ref": "#/components/schemas/CustomFields"
    },
    "time_tracking": {
      "$ref": "#/components/schemas/TimeTracking"
    },
    "time_estimates": {
      "$ref": "#/components/schemas/TimeEstimates"
    },
    "dependency_warning": {
      "$ref": "#/components/schemas/DependencyWarning"
    },
    "remap_dependencies": {
      "$ref": "#/components/schemas/RemapDependencies"
    }
  },
  "x-examples": [
    {
      "tags": {
        "enabled": true
      },
      "due_dates": {
        "enabled": true,
        "start_date": false,
        "remap_due_dates": true,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "portfolios": {
        "enabled": true
      },
      "custom_fields": {
        "enabled": true
      },
      "time_tracking": {
        "enabled": false
      },
      "time_estimates": {
        "enabled": true
      },
      "dependency_warning": {
        "enabled": true
      },
      "remap_dependencies": {
        "enabled": true
      }
    }
  ]
}
object Features1
{
  "type": "object",
  "title": "Features1",
  "example": {
    "tags": {
      "enabled": true
    },
    "zoom": {
      "enabled": false
    },
    "emails": {
      "enabled": true
    },
    "points": {
      "enabled": false
    },
    "sprints": {
      "enabled": false
    },
    "due_dates": {
      "enabled": true,
      "start_date": false,
      "remap_due_dates": true,
      "remap_closed_due_date": false
    },
    "checklists": {
      "enabled": true
    },
    "milestones": {
      "enabled": false
    },
    "portfolios": {
      "enabled": true
    },
    "custom_items": {
      "enabled": false
    },
    "custom_fields": {
      "enabled": true
    },
    "time_estimates": {
      "enabled": true
    },
    "dependency_warning": {
      "enabled": true
    },
    "multiple_assignees": {
      "enabled": true
    },
    "remap_dependencies": {
      "enabled": true
    }
  },
  "required": [
    "due_dates",
    "sprints",
    "points",
    "custom_items",
    "tags",
    "time_estimates",
    "checklists",
    "zoom",
    "milestones",
    "custom_fields",
    "remap_dependencies",
    "dependency_warning",
    "multiple_assignees",
    "portfolios",
    "emails"
  ],
  "properties": {
    "tags": {
      "$ref": "#/components/schemas/Tags"
    },
    "zoom": {
      "$ref": "#/components/schemas/Zoom"
    },
    "emails": {
      "$ref": "#/components/schemas/Emails"
    },
    "points": {
      "$ref": "#/components/schemas/Points"
    },
    "sprints": {
      "$ref": "#/components/schemas/Sprints"
    },
    "due_dates": {
      "$ref": "#/components/schemas/DueDates"
    },
    "checklists": {
      "$ref": "#/components/schemas/Checklists"
    },
    "milestones": {
      "$ref": "#/components/schemas/Milestones"
    },
    "portfolios": {
      "$ref": "#/components/schemas/Portfolios"
    },
    "custom_items": {
      "$ref": "#/components/schemas/CustomItems"
    },
    "custom_fields": {
      "$ref": "#/components/schemas/CustomFields"
    },
    "time_estimates": {
      "$ref": "#/components/schemas/TimeEstimates"
    },
    "dependency_warning": {
      "$ref": "#/components/schemas/DependencyWarning"
    },
    "multiple_assignees": {
      "$ref": "#/components/schemas/MultipleAssignees"
    },
    "remap_dependencies": {
      "$ref": "#/components/schemas/RemapDependencies"
    }
  },
  "x-examples": [
    {
      "tags": {
        "enabled": true
      },
      "zoom": {
        "enabled": false
      },
      "emails": {
        "enabled": true
      },
      "points": {
        "enabled": false
      },
      "sprints": {
        "enabled": false
      },
      "due_dates": {
        "enabled": true,
        "start_date": false,
        "remap_due_dates": true,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "milestones": {
        "enabled": false
      },
      "portfolios": {
        "enabled": true
      },
      "custom_items": {
        "enabled": false
      },
      "custom_fields": {
        "enabled": true
      },
      "time_estimates": {
        "enabled": true
      },
      "dependency_warning": {
        "enabled": true
      },
      "multiple_assignees": {
        "enabled": true
      },
      "remap_dependencies": {
        "enabled": true
      }
    }
  ]
}
object Features4
{
  "type": "object",
  "title": "Features4",
  "example": {
    "tags": {
      "enabled": false
    },
    "due_dates": {
      "enabled": false,
      "start_date": false,
      "remap_due_dates": false,
      "remap_closed_due_date": false
    },
    "checklists": {
      "enabled": true
    },
    "portfolios": {
      "enabled": false
    },
    "custom_fields": {
      "enabled": true
    },
    "time_tracking": {
      "enabled": false
    },
    "time_estimates": {
      "enabled": false
    },
    "dependency_warning": {
      "enabled": false
    },
    "remap_dependencies": {
      "enabled": false
    }
  },
  "required": [
    "due_dates",
    "time_tracking",
    "tags",
    "time_estimates",
    "checklists"
  ],
  "properties": {
    "tags": {
      "$ref": "#/components/schemas/Tags"
    },
    "due_dates": {
      "$ref": "#/components/schemas/DueDates"
    },
    "checklists": {
      "$ref": "#/components/schemas/Checklists"
    },
    "portfolios": {
      "$ref": "#/components/schemas/Portfolios"
    },
    "custom_fields": {
      "$ref": "#/components/schemas/CustomFields"
    },
    "time_tracking": {
      "$ref": "#/components/schemas/TimeTracking"
    },
    "time_estimates": {
      "$ref": "#/components/schemas/TimeEstimates"
    },
    "dependency_warning": {
      "$ref": "#/components/schemas/DependencyWarning"
    },
    "remap_dependencies": {
      "$ref": "#/components/schemas/RemapDependencies"
    }
  },
  "x-examples": [
    {
      "tags": {
        "enabled": false
      },
      "due_dates": {
        "enabled": false,
        "start_date": false,
        "remap_due_dates": false,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "portfolios": {
        "enabled": false
      },
      "custom_fields": {
        "enabled": true
      },
      "time_tracking": {
        "enabled": false
      },
      "time_estimates": {
        "enabled": false
      },
      "dependency_warning": {
        "enabled": false
      },
      "remap_dependencies": {
        "enabled": false
      }
    }
  ]
}
object Field
{
  "type": "object",
  "title": "Field",
  "example": {
    "id": "03efda77-c7a0-42d3-8afd-fd546353c2f5X",
    "name": "Text Field",
    "type": "text",
    "type_config": {},
    "date_created": "1566400407303",
    "hide_from_guests": false
  },
  "required": [
    "id",
    "name",
    "type",
    "type_config",
    "date_created",
    "hide_from_guests"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "type_config": {
      "$ref": "#/components/schemas/TypeConfig"
    },
    "date_created": {
      "type": "string"
    },
    "hide_from_guests": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "03efda77-c7a0-42d3-8afd-fd546353c2f5X",
      "name": "Text Field",
      "type": "text",
      "type_config": {},
      "date_created": "1566400407303",
      "hide_from_guests": false
    }
  ]
}
object Filters
{
  "type": "object",
  "title": "Filters",
  "example": {
    "op": "AND",
    "fields": [],
    "search": "",
    "show_closed": false
  },
  "required": [
    "op",
    "fields",
    "search",
    "show_closed"
  ],
  "properties": {
    "op": {
      "type": "string",
      "description": "The available operator (`op``) values are `AND`` and `OR``."
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "View the list of [fields available](https://clickup.com/api) to filter by."
    },
    "search": {
      "type": "string"
    },
    "show_closed": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "op": "AND",
      "fields": [],
      "search": "",
      "show_closed": false
    }
  ]
}
object Folder
{
  "type": "object",
  "title": "Folder",
  "example": {
    "id": "456X"
  },
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "456X"
    }
  ]
}
object Folder11
{
  "type": "object",
  "title": "Folder11",
  "example": {
    "id": "1058X",
    "name": "Shared Folder",
    "content": null,
    "archived": false,
    "due_date": null,
    "orderindex": 0,
    "task_count": "0"
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "content",
    "task_count",
    "due_date",
    "archived"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "content": {
      "type": [
        "string",
        "null"
      ]
    },
    "archived": {
      "type": "boolean"
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "task_count": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "1058X",
      "name": "Shared Folder",
      "content": null,
      "archived": false,
      "due_date": null,
      "orderindex": 0,
      "task_count": "0"
    }
  ]
}
object Folder2
{
  "type": "object",
  "title": "Folder2",
  "example": {
    "id": "05921253-7737-44af-a1aa-36fd11244e6fX",
    "name": "Quarterly Goals",
    "goals": [
      {
        "id": "e53a033c-900e-462d-a849-4a216b06d930X",
        "name": "Q1 Goals",
        "color": "#32a852",
        "owner": null,
        "owners": [],
        "pinned": false,
        "creator": 182,
        "members": [
          {
            "id": 182,
            "color": "#827718",
            "email": "janedoe@gmail.com",
            "initials": "JD",
            "username": "Jane Doe",
            "isCreator": true,
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
            "permission_level": "edit"
          }
        ],
        "private": false,
        "team_id": "512",
        "archived": false,
        "due_date": "1568036964079",
        "folder_id": "05921253-7737-44af-a1aa-36fd11244e6f",
        "pretty_id": "8",
        "start_date": null,
        "description": "Goal for Q1",
        "last_update": "1626132992152",
        "date_created": "1568044355026",
        "date_updated": "1626130440221",
        "editor_token": "goal:792c3027-83b5-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485fc22d477",
        "folder_access": true,
        "group_members": [],
        "multiple_owners": true,
        "key_result_count": 1,
        "percent_completed": 1
      }
    ],
    "creator": 182,
    "members": [
      {
        "id": 182,
        "color": "#827718",
        "email": "janedoe@gmail.com",
        "added_by": 183,
        "initials": "JD",
        "username": "Jane Doe",
        "date_added": 1631599941928,
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
        "permission_level": "read"
      }
    ],
    "private": true,
    "team_id": "512",
    "goal_count": 1,
    "date_created": "1548802674671"
  },
  "required": [
    "id",
    "name",
    "team_id",
    "private",
    "date_created",
    "creator",
    "goal_count",
    "members",
    "goals"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "goals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Goal3"
      },
      "description": ""
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Member2"
      },
      "description": ""
    },
    "private": {
      "type": "boolean"
    },
    "team_id": {
      "type": "string"
    },
    "goal_count": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "05921253-7737-44af-a1aa-36fd11244e6fX",
      "name": "Quarterly Goals",
      "goals": [
        {
          "id": "e53a033c-900e-462d-a849-4a216b06d930X",
          "name": "Q1 Goals",
          "color": "#32a852",
          "owner": null,
          "owners": [],
          "pinned": false,
          "creator": 182,
          "members": [
            {
              "id": 182,
              "color": "#827718",
              "email": "janedoe@gmail.com",
              "initials": "JD",
              "username": "Jane Doe",
              "isCreator": true,
              "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
              "permission_level": "edit"
            }
          ],
          "private": false,
          "team_id": "512",
          "archived": false,
          "due_date": "1568036964079",
          "folder_id": "05921253-7737-44af-a1aa-36fd11244e6f",
          "pretty_id": "8",
          "start_date": null,
          "description": "Goal for Q1",
          "last_update": "1626132992152",
          "date_created": "1568044355026",
          "date_updated": "1626130440221",
          "editor_token": "goal:792c3027-83b5-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485fc22d477",
          "folder_access": true,
          "group_members": [],
          "multiple_owners": true,
          "key_result_count": 1,
          "percent_completed": 1
        }
      ],
      "creator": 182,
      "members": [
        {
          "id": 182,
          "color": "#827718",
          "email": "janedoe@gmail.com",
          "added_by": 183,
          "initials": "JD",
          "username": "Jane Doe",
          "date_added": 1631599941928,
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
          "permission_level": "read"
        }
      ],
      "private": true,
      "team_id": "512",
      "goal_count": 1,
      "date_created": "1548802674671"
    }
  ]
}
object Folder3
{
  "type": "object",
  "title": "Folder3",
  "example": {
    "id": "1217X",
    "name": "Shared with me",
    "access": false,
    "hidden": false
  },
  "required": [
    "id",
    "name",
    "hidden",
    "access"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "access": {
      "type": "boolean"
    },
    "hidden": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "1217X",
      "name": "Shared with me",
      "access": false,
      "hidden": false
    }
  ]
}
object Folder4
{
  "type": "object",
  "title": "Folder4",
  "example": {
    "id": "1057X",
    "name": "Folder Name",
    "lists": [],
    "hidden": false,
    "archived": false,
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "Open",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "Closed",
        "orderindex": 5
      }
    ],
    "orderindex": 5,
    "task_count": "20",
    "permission_level": "read",
    "override_statuses": true
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "override_statuses",
    "hidden",
    "task_count",
    "archived",
    "statuses",
    "lists",
    "permission_level"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "lists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "hidden": {
      "type": "boolean"
    },
    "archived": {
      "type": "boolean"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "task_count": {
      "type": "string"
    },
    "permission_level": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "1057X",
      "name": "Folder Name",
      "lists": [],
      "hidden": false,
      "archived": false,
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "Open",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "Closed",
          "orderindex": 5
        }
      ],
      "orderindex": 5,
      "task_count": "20",
      "permission_level": "read",
      "override_statuses": true
    }
  ]
}
object Folder5
{
  "type": "object",
  "title": "Folder5",
  "example": {
    "id": "1057X",
    "name": "Folder Name",
    "lists": [],
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "hidden": false,
    "orderindex": 5,
    "task_count": "20",
    "override_statuses": true
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "override_statuses",
    "hidden",
    "space",
    "task_count",
    "lists"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "lists": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "hidden": {
      "type": "boolean"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "task_count": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "1057X",
      "name": "Folder Name",
      "lists": [],
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "hidden": false,
      "orderindex": 5,
      "task_count": "20",
      "override_statuses": true
    }
  ]
}
object FoldersRemoveFolderResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object GetAccessTokenresponse
{
  "type": "object",
  "title": "GetAccessTokenresponse",
  "example": {
    "access_token": "access token"
  },
  "required": [
    "access_token"
  ],
  "properties": {
    "access_token": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "access_token": "access token"
    }
  ]
}
object GetAccessibleCustomFieldsresponse
{
  "type": "object",
  "title": "GetAccessibleCustomFieldsresponse",
  "required": [
    "fields"
  ],
  "properties": {
    "fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Field"
      },
      "description": ""
    }
  }
}
object GetAuthorizedTeamsresponse
{
  "type": "object",
  "title": "GetAuthorizedTeamsresponse",
  "example": {
    "teams": [
      {
        "id": "1234X",
        "name": "My ClickUp Workspace",
        "color": "#000000",
        "avatar": "https://clickup.com/avatar.jpg",
        "members": [
          {
            "user": {
              "id": 123,
              "color": "#000000",
              "username": "John Doe",
              "profilePicture": "https://clickup.com/avatar.jpg"
            }
          }
        ]
      }
    ]
  },
  "required": [
    "teams"
  ],
  "properties": {
    "teams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Team"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "teams": [
        {
          "id": "1234X",
          "name": "My ClickUp Workspace",
          "color": "#000000",
          "avatar": "https://clickup.com/avatar.jpg",
          "members": [
            {
              "user": {
                "id": 123,
                "color": "#000000",
                "username": "John Doe",
                "profilePicture": "https://clickup.com/avatar.jpg"
              }
            }
          ]
        }
      ]
    }
  ]
}
object GetAuthorizedUserresponse
{
  "type": "object",
  "title": "GetAuthorizedUserresponse",
  "example": {
    "user": {
      "id": 123,
      "color": "#000000",
      "username": "John Doe",
      "profilePicture": "https://clickup.com/avatar.jpg"
    }
  },
  "required": [
    "user"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 123,
        "color": "#000000",
        "username": "John Doe",
        "profilePicture": "https://clickup.com/avatar.jpg"
      }
    }
  ]
}
object GetBulkTasksTimeinStatusresponse
{
  "type": "object",
  "title": "GetBulkTasksTimeinStatusresponse",
  "example": {
    "20bbn28": {
      "current_status": {
        "color": "#d3d3d3",
        "status": "open",
        "total_time": {
          "since": "1604004420925",
          "by_minute": 21830
        }
      },
      "status_history": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "open",
          "orderindex": 0,
          "total_time": {
            "since": "1604004420925",
            "by_minute": 22276
          }
        },
        {
          "type": "custom",
          "color": "#5CF1D4",
          "status": "active status #2",
          "orderindex": 4,
          "total_time": {
            "since": "1601597828835",
            "by_minute": 40109
          }
        }
      ]
    },
    "27075wz": {
      "current_status": {
        "color": "#d3d3d3",
        "status": "open",
        "total_time": {
          "since": "1604004423494",
          "by_minute": 21830
        }
      },
      "status_history": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "open",
          "orderindex": 0,
          "total_time": {
            "since": "1604004423494",
            "by_minute": 21829
          }
        },
        {
          "type": "custom",
          "color": "#5CF1D4",
          "status": "active status #2",
          "orderindex": 4,
          "total_time": {
            "since": "1602607941692",
            "by_minute": 23274
          }
        }
      ]
    }
  },
  "required": [
    "27075wz",
    "20bbn28"
  ],
  "properties": {
    "20bbn28": {
      "$ref": "#/components/schemas/20bbn28"
    },
    "27075wz": {
      "$ref": "#/components/schemas/27075wz"
    }
  },
  "x-examples": [
    {
      "20bbn28": {
        "current_status": {
          "color": "#d3d3d3",
          "status": "open",
          "total_time": {
            "since": "1604004420925",
            "by_minute": 21830
          }
        },
        "status_history": [
          {
            "type": "open",
            "color": "#d3d3d3",
            "status": "open",
            "orderindex": 0,
            "total_time": {
              "since": "1604004420925",
              "by_minute": 22276
            }
          },
          {
            "type": "custom",
            "color": "#5CF1D4",
            "status": "active status #2",
            "orderindex": 4,
            "total_time": {
              "since": "1601597828835",
              "by_minute": 40109
            }
          }
        ]
      },
      "27075wz": {
        "current_status": {
          "color": "#d3d3d3",
          "status": "open",
          "total_time": {
            "since": "1604004423494",
            "by_minute": 21830
          }
        },
        "status_history": [
          {
            "type": "open",
            "color": "#d3d3d3",
            "status": "open",
            "orderindex": 0,
            "total_time": {
              "since": "1604004423494",
              "by_minute": 21829
            }
          },
          {
            "type": "custom",
            "color": "#5CF1D4",
            "status": "active status #2",
            "orderindex": 4,
            "total_time": {
              "since": "1602607941692",
              "by_minute": 23274
            }
          }
        ]
      }
    }
  ]
}
object GetChatViewCommentsresponse
{
  "type": "object",
  "title": "GetChatViewCommentsresponse",
  "example": {
    "comments": [
      {
        "id": "459X",
        "date": "1568036964079",
        "user": {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "comment": [
          {
            "text": "View comment content"
          }
        ],
        "assignee": null,
        "resolved": false,
        "reactions": [],
        "assigned_by": null,
        "comment_text": "View comment content"
      }
    ]
  },
  "required": [
    "comments"
  ],
  "properties": {
    "comments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Comment2"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "comments": [
        {
          "id": "459X",
          "date": "1568036964079",
          "user": {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "comment": [
            {
              "text": "View comment content"
            }
          ],
          "assignee": null,
          "resolved": false,
          "reactions": [],
          "assigned_by": null,
          "comment_text": "View comment content"
        }
      ]
    }
  ]
}
object GetCustomItemsResponse
{
  "type": "object",
  "title": "GetCustomItemsResponse",
  "example": {
    "custom_items": [
      {
        "id": "1300-900e-462d-a849-4a216b06d930",
        "name": "Bug",
        "description": "Custom item type for bugs.",
        "name_plural": "Bugs"
      }
    ]
  },
  "properties": {
    "custom_items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomItem"
      },
      "description": "Array of custom task types."
    }
  },
  "x-examples": [
    {
      "custom_items": [
        {
          "id": "1300-900e-462d-a849-4a216b06d930",
          "name": "Bug",
          "description": "Custom item type for bugs.",
          "name_plural": "Bugs"
        }
      ]
    }
  ]
}
object GetCustomRolesresponse
{
  "type": "object",
  "title": "GetCustomRolesresponse",
  "example": {
    "custom_roles": [
      {
        "id": 4547089,
        "name": "guest custom",
        "members": [
          12345,
          67899
        ],
        "team_id": "301539",
        "date_created": "1651189835671",
        "inherited_role": 4
      },
      {
        "id": 6715664,
        "name": "member custom",
        "members": [
          5553,
          98989
        ],
        "team_id": "301539",
        "date_created": "1651189901020",
        "inherited_role": 3
      },
      {
        "id": 2957195,
        "name": "admin custom",
        "members": [
          47474,
          818181
        ],
        "team_id": "301539",
        "date_created": "1651189904868",
        "inherited_role": 2
      }
    ]
  },
  "required": [
    "custom_roles"
  ],
  "properties": {
    "custom_roles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomRole2"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "custom_roles": [
        {
          "id": 4547089,
          "name": "guest custom",
          "members": [
            12345,
            67899
          ],
          "team_id": "301539",
          "date_created": "1651189835671",
          "inherited_role": 4
        },
        {
          "id": 6715664,
          "name": "member custom",
          "members": [
            5553,
            98989
          ],
          "team_id": "301539",
          "date_created": "1651189901020",
          "inherited_role": 3
        },
        {
          "id": 2957195,
          "name": "admin custom",
          "members": [
            47474,
            818181
          ],
          "team_id": "301539",
          "date_created": "1651189904868",
          "inherited_role": 2
        }
      ]
    }
  ]
}
object GetFilteredTeamTasksresponse
{
  "type": "object",
  "title": "GetFilteredTeamTasksresponse",
  "example": {
    "tasks": [
      {
        "id": "av1X",
        "url": "https://app.clickup.com/t/av1",
        "list": {
          "id": "1X",
          "name": "List",
          "access": true
        },
        "name": "My First Task",
        "tags": [
          {
            "name": "tagged",
            "tag_bg": "#000000",
            "tag_fg": "#000000"
          }
        ],
        "space": {
          "id": "1X"
        },
        "folder": {
          "id": "1X",
          "name": "Folder",
          "access": true,
          "hidden": false
        },
        "parent": "av2",
        "points": 1.3,
        "status": {
          "type": "open",
          "color": "#000000",
          "status": "Open",
          "orderindex": 1
        },
        "creator": {
          "id": 123,
          "color": "#000000",
          "email": "johndoe@website.com",
          "username": "John Doe",
          "profilePicture": "https://clickup.com/avatar.jpg"
        },
        "project": {
          "id": "1X",
          "name": "Folder",
          "access": true,
          "hidden": false
        },
        "team_id": "1234",
        "due_date": "1508369194377",
        "priority": 1,
        "watchers": [
          {
            "id": 123,
            "color": "#000000",
            "email": "johndoe@website.com",
            "username": "John Doe",
            "profilePicture": "https://clickup.com/avatar.jpg"
          }
        ],
        "assignees": [
          {
            "id": 123,
            "color": "#000000",
            "email": "johndoe@website.com",
            "username": "John Doe",
            "profilePicture": "https://clickup.com/avatar.jpg"
          }
        ],
        "custom_id": null,
        "date_done": "1508369194377",
        "checklists": [
          {
            "id": "d41340bc-2f17-43cc-ae71-86628f45825fX",
            "name": "Checklist",
            "items": [
              {
                "id": "9398cb3d-55a4-4c45-ab46-2a47a371e375X",
                "name": "checklist item 1",
                "parent": null,
                "assignee": null,
                "children": [],
                "resolved": false,
                "orderindex": 0,
                "date_created": "1618455810454"
              }
            ],
            "creator": 2770032,
            "task_id": "3cxv9f",
            "resolved": 0,
            "orderindex": 1,
            "unresolved": 1,
            "date_created": "1618455803730"
          }
        ],
        "orderindex": "1.0000",
        "start_date": "1508369194377",
        "date_closed": "1508369194377",
        "description": "Task description",
        "date_created": "1508369194377",
        "date_updated": "1508369194377",
        "dependencies": [],
        "linked_tasks": [],
        "text_content": "Task description",
        "custom_fields": [
          {
            "id": "be43f58e-989e-4233-9f25-27584f094b74X",
            "name": "Location type Custom Field",
            "type": "location",
            "required": false,
            "type_config": {},
            "date_created": "1617765143523",
            "hide_from_guests": false
          }
        ],
        "time_estimate": 1.2,
        "permission_level": "create",
        "markdown_description": "Task description"
      }
    ]
  },
  "required": [
    "tasks"
  ],
  "properties": {
    "tasks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Task3"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "tasks": [
        {
          "id": "av1X",
          "url": "https://app.clickup.com/t/av1",
          "list": {
            "id": "1X",
            "name": "List",
            "access": true
          },
          "name": "My First Task",
          "tags": [
            {
              "name": "tagged",
              "tag_bg": "#000000",
              "tag_fg": "#000000"
            }
          ],
          "space": {
            "id": "1X"
          },
          "folder": {
            "id": "1X",
            "name": "Folder",
            "access": true,
            "hidden": false
          },
          "parent": "av2",
          "points": 1.3,
          "status": {
            "type": "open",
            "color": "#000000",
            "status": "Open",
            "orderindex": 1
          },
          "creator": {
            "id": 123,
            "color": "#000000",
            "email": "johndoe@website.com",
            "username": "John Doe",
            "profilePicture": "https://clickup.com/avatar.jpg"
          },
          "project": {
            "id": "1X",
            "name": "Folder",
            "access": true,
            "hidden": false
          },
          "team_id": "1234",
          "due_date": "1508369194377",
          "priority": 1,
          "watchers": [
            {
              "id": 123,
              "color": "#000000",
              "email": "johndoe@website.com",
              "username": "John Doe",
              "profilePicture": "https://clickup.com/avatar.jpg"
            }
          ],
          "assignees": [
            {
              "id": 123,
              "color": "#000000",
              "email": "johndoe@website.com",
              "username": "John Doe",
              "profilePicture": "https://clickup.com/avatar.jpg"
            }
          ],
          "custom_id": null,
          "date_done": "1508369194377",
          "checklists": [
            {
              "id": "d41340bc-2f17-43cc-ae71-86628f45825fX",
              "name": "Checklist",
              "items": [
                {
                  "id": "9398cb3d-55a4-4c45-ab46-2a47a371e375X",
                  "name": "checklist item 1",
                  "parent": null,
                  "assignee": null,
                  "children": [],
                  "resolved": false,
                  "orderindex": 0,
                  "date_created": "1618455810454"
                }
              ],
              "creator": 2770032,
              "task_id": "3cxv9f",
              "resolved": 0,
              "orderindex": 1,
              "unresolved": 1,
              "date_created": "1618455803730"
            }
          ],
          "orderindex": "1.0000",
          "start_date": "1508369194377",
          "date_closed": "1508369194377",
          "description": "Task description",
          "date_created": "1508369194377",
          "date_updated": "1508369194377",
          "dependencies": [],
          "linked_tasks": [],
          "text_content": "Task description",
          "custom_fields": [
            {
              "id": "be43f58e-989e-4233-9f25-27584f094b74X",
              "name": "Location type Custom Field",
              "type": "location",
              "required": false,
              "type_config": {},
              "date_created": "1617765143523",
              "hide_from_guests": false
            }
          ],
          "time_estimate": 1.2,
          "permission_level": "create",
          "markdown_description": "Task description"
        }
      ]
    }
  ]
}
object GetFolderViewsresponse
{
  "type": "object",
  "title": "GetFolderViewsresponse",
  "example": {
    "views": [
      {
        "id": "3c-107X",
        "name": "New Folder View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "457X",
          "type": 5
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    ]
  },
  "required": [
    "views"
  ],
  "properties": {
    "views": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/View"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "views": [
        {
          "id": "3c-107X",
          "name": "New Folder View Name",
          "type": "list",
          "divide": {
            "dir": null,
            "field": null,
            "collapsed": []
          },
          "parent": {
            "id": "457X",
            "type": 5
          },
          "columns": {
            "fields": []
          },
          "filters": {
            "op": "AND",
            "fields": [],
            "search": "",
            "show_closed": false
          },
          "sorting": {
            "fields": []
          },
          "grouping": {
            "dir": 1,
            "field": "status",
            "ignore": false,
            "collapsed": []
          },
          "settings": {
            "me_comments": true,
            "me_subtasks": true,
            "show_images": true,
            "me_checklists": true,
            "show_subtasks": 3,
            "show_assignees": true,
            "show_task_locations": false,
            "show_closed_subtasks": false,
            "collapse_empty_columns": null,
            "show_subtask_parent_names": false
          },
          "team_sidebar": {
            "assignees": [],
            "unassigned_tasks": false,
            "assigned_comments": false
          }
        }
      ]
    }
  ]
}
object GetFolderlessListsresponse
{
  "type": "object",
  "title": "GetFolderlessListsresponse",
  "required": [
    "lists"
  ],
  "properties": {
    "lists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/List4"
      },
      "description": ""
    }
  }
}
object GetFolderresponse
{
  "type": "object",
  "title": "GetFolderresponse",
  "example": {
    "id": "457X",
    "name": "Updated Folder Name",
    "lists": [],
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "hidden": false,
    "orderindex": 0,
    "task_count": "0",
    "override_statuses": false
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "override_statuses",
    "hidden",
    "space",
    "task_count",
    "lists"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "lists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "hidden": {
      "type": "boolean"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "task_count": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "457X",
      "name": "Updated Folder Name",
      "lists": [],
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "hidden": false,
      "orderindex": 0,
      "task_count": "0",
      "override_statuses": false
    }
  ]
}
object GetFoldersresponse
{
  "type": "object",
  "title": "GetFoldersresponse",
  "example": {
    "folders": [
      {
        "id": "457X",
        "name": "Updated Folder Name",
        "lists": [],
        "space": {
          "id": "789X",
          "name": "Space Name",
          "access": true
        },
        "hidden": false,
        "orderindex": 0,
        "task_count": "0",
        "override_statuses": false
      },
      {
        "id": "321",
        "name": "Folder Name",
        "lists": [],
        "space": {
          "id": "789X",
          "name": "Space Name",
          "access": true
        },
        "hidden": false,
        "orderindex": 0,
        "task_count": "0",
        "override_statuses": false
      }
    ]
  },
  "required": [
    "folders"
  ],
  "properties": {
    "folders": {
      "$ref": "#/components/schemas/Folder5"
    }
  },
  "x-examples": [
    {
      "folders": [
        {
          "id": "457X",
          "name": "Updated Folder Name",
          "lists": [],
          "space": {
            "id": "789X",
            "name": "Space Name",
            "access": true
          },
          "hidden": false,
          "orderindex": 0,
          "task_count": "0",
          "override_statuses": false
        },
        {
          "id": "321",
          "name": "Folder Name",
          "lists": [],
          "space": {
            "id": "789X",
            "name": "Space Name",
            "access": true
          },
          "hidden": false,
          "orderindex": 0,
          "task_count": "0",
          "override_statuses": false
        }
      ]
    }
  ]
}
object GetGoalresponse
{
  "type": "object",
  "title": "GetGoalresponse",
  "example": {
    "goal": {
      "id": "e53a033c-900e-462d-a849-4a216b06d930X",
      "name": "Updated Goal Name",
      "color": "#32a852",
      "owners": [
        {
          "id": 182,
          "color": "#827718",
          "email": "janedoe@gmail.com",
          "initials": "JD",
          "username": "Jane Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/182_abc.jpg"
        }
      ],
      "creator": 183,
      "history": [],
      "members": [],
      "private": false,
      "team_id": "512",
      "archived": false,
      "due_date": "1568036964079",
      "folder_id": null,
      "pretty_id": "6",
      "pretty_url": "https://app.clickup.com/512/goals/6",
      "start_date": null,
      "description": "Updated Goal Description",
      "key_results": [],
      "date_created": "1568044355026",
      "multiple_owners": true,
      "percent_completed": 0
    }
  },
  "required": [
    "goal"
  ],
  "properties": {
    "goal": {
      "$ref": "#/components/schemas/Goal"
    }
  },
  "x-examples": [
    {
      "goal": {
        "id": "e53a033c-900e-462d-a849-4a216b06d930X",
        "name": "Updated Goal Name",
        "color": "#32a852",
        "owners": [
          {
            "id": 182,
            "color": "#827718",
            "email": "janedoe@gmail.com",
            "initials": "JD",
            "username": "Jane Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/182_abc.jpg"
          }
        ],
        "creator": 183,
        "history": [],
        "members": [],
        "private": false,
        "team_id": "512",
        "archived": false,
        "due_date": "1568036964079",
        "folder_id": null,
        "pretty_id": "6",
        "pretty_url": "https://app.clickup.com/512/goals/6",
        "start_date": null,
        "description": "Updated Goal Description",
        "key_results": [],
        "date_created": "1568044355026",
        "multiple_owners": true,
        "percent_completed": 0
      }
    }
  ]
}
object GetGoalsresponse
{
  "type": "object",
  "title": "GetGoalsresponse",
  "example": {
    "goals": [
      {
        "id": "e53a033c-900e-462d-a849-4a216b06d930X",
        "name": "Goal ABC",
        "color": "#32a852",
        "owner": null,
        "owners": [],
        "pinned": false,
        "creator": 182,
        "members": [
          {
            "id": 182,
            "color": "#827718",
            "email": "janedoe@gmail.com",
            "initials": "JD",
            "username": "Jane Doe",
            "isCreator": true,
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
            "permission_level": "edit"
          }
        ],
        "private": false,
        "team_id": "512",
        "archived": false,
        "due_date": "1568036964079",
        "folder_id": null,
        "pretty_id": "6",
        "start_date": null,
        "description": "Updated Goal Description",
        "last_update": "1626132992152",
        "date_created": "1568044355026",
        "date_updated": "1626130440221",
        "editor_token": "goal:792c3027-83a2-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485ed15e675",
        "group_members": [],
        "multiple_owners": true,
        "key_result_count": 1,
        "percent_completed": 0
      }
    ],
    "folders": [
      {
        "id": "05921253-7737-44af-a1aa-36fd11244e6fX",
        "name": "Quarterly Goals",
        "goals": [
          {
            "id": "e53a033c-900e-462d-a849-4a216b06d930X",
            "name": "Q1 Goals",
            "color": "#32a852",
            "owner": null,
            "owners": [],
            "pinned": false,
            "creator": 182,
            "members": [
              {
                "id": 182,
                "color": "#827718",
                "email": "janedoe@gmail.com",
                "initials": "JD",
                "username": "Jane Doe",
                "isCreator": true,
                "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
                "permission_level": "edit"
              }
            ],
            "private": false,
            "team_id": "512",
            "archived": false,
            "due_date": "1568036964079",
            "folder_id": "05921253-7737-44af-a1aa-36fd11244e6f",
            "pretty_id": "8",
            "start_date": null,
            "description": "Goal for Q1",
            "last_update": "1626132992152",
            "date_created": "1568044355026",
            "date_updated": "1626130440221",
            "editor_token": "goal:792c3027-83b5-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485fc22d477",
            "folder_access": true,
            "group_members": [],
            "multiple_owners": true,
            "key_result_count": 1,
            "percent_completed": 1
          }
        ],
        "creator": 182,
        "members": [
          {
            "id": 182,
            "color": "#827718",
            "email": "janedoe@gmail.com",
            "added_by": 183,
            "initials": "JD",
            "username": "Jane Doe",
            "date_added": 1631599941928,
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
            "permission_level": "read"
          }
        ],
        "private": true,
        "team_id": "512",
        "goal_count": 1,
        "date_created": "1548802674671"
      }
    ]
  },
  "required": [
    "goals",
    "folders"
  ],
  "properties": {
    "goals": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Goal2"
      },
      "description": ""
    },
    "folders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Folder2"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "goals": [
        {
          "id": "e53a033c-900e-462d-a849-4a216b06d930X",
          "name": "Goal ABC",
          "color": "#32a852",
          "owner": null,
          "owners": [],
          "pinned": false,
          "creator": 182,
          "members": [
            {
              "id": 182,
              "color": "#827718",
              "email": "janedoe@gmail.com",
              "initials": "JD",
              "username": "Jane Doe",
              "isCreator": true,
              "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
              "permission_level": "edit"
            }
          ],
          "private": false,
          "team_id": "512",
          "archived": false,
          "due_date": "1568036964079",
          "folder_id": null,
          "pretty_id": "6",
          "start_date": null,
          "description": "Updated Goal Description",
          "last_update": "1626132992152",
          "date_created": "1568044355026",
          "date_updated": "1626130440221",
          "editor_token": "goal:792c3027-83a2-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485ed15e675",
          "group_members": [],
          "multiple_owners": true,
          "key_result_count": 1,
          "percent_completed": 0
        }
      ],
      "folders": [
        {
          "id": "05921253-7737-44af-a1aa-36fd11244e6fX",
          "name": "Quarterly Goals",
          "goals": [
            {
              "id": "e53a033c-900e-462d-a849-4a216b06d930X",
              "name": "Q1 Goals",
              "color": "#32a852",
              "owner": null,
              "owners": [],
              "pinned": false,
              "creator": 182,
              "members": [
                {
                  "id": 182,
                  "color": "#827718",
                  "email": "janedoe@gmail.com",
                  "initials": "JD",
                  "username": "Jane Doe",
                  "isCreator": true,
                  "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
                  "permission_level": "edit"
                }
              ],
              "private": false,
              "team_id": "512",
              "archived": false,
              "due_date": "1568036964079",
              "folder_id": "05921253-7737-44af-a1aa-36fd11244e6f",
              "pretty_id": "8",
              "start_date": null,
              "description": "Goal for Q1",
              "last_update": "1626132992152",
              "date_created": "1568044355026",
              "date_updated": "1626130440221",
              "editor_token": "goal:792c3027-83b5-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485fc22d477",
              "folder_access": true,
              "group_members": [],
              "multiple_owners": true,
              "key_result_count": 1,
              "percent_completed": 1
            }
          ],
          "creator": 182,
          "members": [
            {
              "id": 182,
              "color": "#827718",
              "email": "janedoe@gmail.com",
              "added_by": 183,
              "initials": "JD",
              "username": "Jane Doe",
              "date_added": 1631599941928,
              "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
              "permission_level": "read"
            }
          ],
          "private": true,
          "team_id": "512",
          "goal_count": 1,
          "date_created": "1548802674671"
        }
      ]
    }
  ]
}
object GetListCommentsresponse
{
  "type": "object",
  "title": "GetListCommentsresponse",
  "example": {
    "comments": [
      {
        "id": "462X",
        "date": "1568036964079",
        "user": {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "comment": [
          {
            "text": "List comment content"
          }
        ],
        "assignee": {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "resolved": false,
        "reactions": [],
        "assigned_by": {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "comment_text": "List comment content"
      }
    ]
  },
  "required": [
    "comments"
  ],
  "properties": {
    "comments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Comment"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "comments": [
        {
          "id": "462X",
          "date": "1568036964079",
          "user": {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "comment": [
            {
              "text": "List comment content"
            }
          ],
          "assignee": {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "resolved": false,
          "reactions": [],
          "assigned_by": {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "comment_text": "List comment content"
        }
      ]
    }
  ]
}
object GetListMembersresponse
{
  "type": "object",
  "title": "GetListMembersresponse",
  "example": {
    "members": [
      {
        "id": 812,
        "color": "#FFFFFF",
        "email": "john@example.com",
        "initials": "JD",
        "username": "John Doe",
        "profileInfo": {
          "top_tier_user": null,
          "display_profile": null,
          "verified_ambassador": null,
          "verified_consultant": null,
          "viewed_top_tier_user": null,
          "viewed_verified_ambassador": null,
          "viewed_verified_consultant": null
        },
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/812_nx1.jpg"
      },
      {
        "id": 813,
        "color": null,
        "email": "jane@example.com",
        "initials": "JD",
        "username": "Jane Doe",
        "profileInfo": {
          "top_tier_user": null,
          "display_profile": null,
          "verified_ambassador": null,
          "verified_consultant": null,
          "viewed_top_tier_user": null,
          "viewed_verified_ambassador": null,
          "viewed_verified_consultant": null
        },
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/813_nx1.jpg"
      }
    ]
  },
  "required": [
    "members"
  ],
  "properties": {
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Member5"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "members": [
        {
          "id": 812,
          "color": "#FFFFFF",
          "email": "john@example.com",
          "initials": "JD",
          "username": "John Doe",
          "profileInfo": {
            "top_tier_user": null,
            "display_profile": null,
            "verified_ambassador": null,
            "verified_consultant": null,
            "viewed_top_tier_user": null,
            "viewed_verified_ambassador": null,
            "viewed_verified_consultant": null
          },
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/812_nx1.jpg"
        },
        {
          "id": 813,
          "color": null,
          "email": "jane@example.com",
          "initials": "JD",
          "username": "Jane Doe",
          "profileInfo": {
            "top_tier_user": null,
            "display_profile": null,
            "verified_ambassador": null,
            "verified_consultant": null,
            "viewed_top_tier_user": null,
            "viewed_verified_ambassador": null,
            "viewed_verified_consultant": null
          },
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/813_nx1.jpg"
        }
      ]
    }
  ]
}
object GetListViewsresponse
{
  "type": "object",
  "title": "GetListViewsresponse",
  "example": {
    "views": [
      {
        "id": "3c-107X",
        "name": "New List View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "124X",
          "type": 6
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    ]
  },
  "required": [
    "views"
  ],
  "properties": {
    "views": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/View"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "views": [
        {
          "id": "3c-107X",
          "name": "New List View Name",
          "type": "list",
          "divide": {
            "dir": null,
            "field": null,
            "collapsed": []
          },
          "parent": {
            "id": "124X",
            "type": 6
          },
          "columns": {
            "fields": []
          },
          "filters": {
            "op": "AND",
            "fields": [],
            "search": "",
            "show_closed": false
          },
          "sorting": {
            "fields": []
          },
          "grouping": {
            "dir": 1,
            "field": "status",
            "ignore": false,
            "collapsed": []
          },
          "settings": {
            "me_comments": true,
            "me_subtasks": true,
            "show_images": true,
            "me_checklists": true,
            "show_subtasks": 3,
            "show_assignees": true,
            "show_task_locations": false,
            "show_closed_subtasks": false,
            "collapse_empty_columns": null,
            "show_subtask_parent_names": false
          },
          "team_sidebar": {
            "assignees": [],
            "unassigned_tasks": false,
            "assigned_comments": false
          }
        }
      ]
    }
  ]
}
object GetListresponse
{
  "type": "object",
  "title": "GetListresponse",
  "example": {
    "id": "124X",
    "name": "Updated List Name",
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "folder": {
      "id": "456X",
      "name": "Folder Name",
      "access": true,
      "hidden": false
    },
    "status": {
      "color": "#e50000",
      "status": "red",
      "hide_label": true
    },
    "content": "Updated List Content",
    "archived": false,
    "assignee": null,
    "due_date": "1567780450202",
    "priority": {
      "color": "#f50000",
      "priority": "high"
    },
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "orderindex": 1,
    "start_date": null,
    "due_date_time": true,
    "inbound_address": "add.task.124.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
    "start_date_time": null,
    "permission_level": "create",
    "override_statuses": false
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "content",
    "status",
    "priority",
    "assignee",
    "due_date",
    "due_date_time",
    "start_date",
    "start_date_time",
    "folder",
    "space",
    "inbound_address",
    "archived",
    "override_statuses",
    "statuses",
    "permission_level"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder3"
    },
    "status": {
      "$ref": "#/components/schemas/Status5"
    },
    "content": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date": {
      "type": "string"
    },
    "priority": {
      "$ref": "#/components/schemas/Priority1"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date_time": {
      "type": "boolean"
    },
    "inbound_address": {
      "type": "string"
    },
    "start_date_time": {
      "type": [
        "string",
        "null"
      ]
    },
    "permission_level": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "124X",
      "name": "Updated List Name",
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "folder": {
        "id": "456X",
        "name": "Folder Name",
        "access": true,
        "hidden": false
      },
      "status": {
        "color": "#e50000",
        "status": "red",
        "hide_label": true
      },
      "content": "Updated List Content",
      "archived": false,
      "assignee": null,
      "due_date": "1567780450202",
      "priority": {
        "color": "#f50000",
        "priority": "high"
      },
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "orderindex": 1,
      "start_date": null,
      "due_date_time": true,
      "inbound_address": "add.task.124.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
      "start_date_time": null,
      "permission_level": "create",
      "override_statuses": false
    }
  ]
}
object GetListsresponse
{
  "type": "object",
  "title": "GetListsresponse",
  "required": [
    "lists"
  ],
  "properties": {
    "lists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/List4"
      },
      "description": ""
    }
  }
}
object GetSpaceTagsresponse
{
  "type": "object",
  "title": "GetSpaceTagsresponse",
  "example": {
    "tags": [
      {
        "name": "Tag name",
        "tag_bg": "#000000",
        "tag_fg": "#000000"
      }
    ]
  },
  "required": [
    "tags"
  ],
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags6"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "tags": [
        {
          "name": "Tag name",
          "tag_bg": "#000000",
          "tag_fg": "#000000"
        }
      ]
    }
  ]
}
object GetSpaceViewsresponse
{
  "type": "object",
  "title": "GetSpaceViewsresponse",
  "example": {
    "views": [
      {
        "id": "3c-106X",
        "name": "New Space View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "790X",
          "type": 4
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    ]
  },
  "required": [
    "views"
  ],
  "properties": {
    "views": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/View"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "views": [
        {
          "id": "3c-106X",
          "name": "New Space View Name",
          "type": "list",
          "divide": {
            "dir": null,
            "field": null,
            "collapsed": []
          },
          "parent": {
            "id": "790X",
            "type": 4
          },
          "columns": {
            "fields": []
          },
          "filters": {
            "op": "AND",
            "fields": [],
            "search": "",
            "show_closed": false
          },
          "sorting": {
            "fields": []
          },
          "grouping": {
            "dir": 1,
            "field": "status",
            "ignore": false,
            "collapsed": []
          },
          "settings": {
            "me_comments": true,
            "me_subtasks": true,
            "show_images": true,
            "me_checklists": true,
            "show_subtasks": 3,
            "show_assignees": true,
            "show_task_locations": false,
            "show_closed_subtasks": false,
            "collapse_empty_columns": null,
            "show_subtask_parent_names": false
          },
          "team_sidebar": {
            "assignees": [],
            "unassigned_tasks": false,
            "assigned_comments": false
          }
        }
      ]
    }
  ]
}
object GetSpaceresponse
{
  "type": "object",
  "title": "GetSpaceresponse",
  "example": {
    "id": "790X",
    "name": "Updated Space Name",
    "private": false,
    "features": {
      "tags": {
        "enabled": false
      },
      "due_dates": {
        "enabled": false,
        "start_date": false,
        "remap_due_dates": false,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "portfolios": {
        "enabled": false
      },
      "custom_fields": {
        "enabled": true
      },
      "time_tracking": {
        "enabled": false
      },
      "time_estimates": {
        "enabled": false
      },
      "dependency_warning": {
        "enabled": false
      },
      "remap_dependencies": {
        "enabled": false
      }
    },
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "multiple_assignees": false
  },
  "required": [
    "id",
    "name",
    "private",
    "statuses",
    "multiple_assignees",
    "features"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "private": {
      "type": "boolean"
    },
    "features": {
      "$ref": "#/components/schemas/Features"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "multiple_assignees": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "790X",
      "name": "Updated Space Name",
      "private": false,
      "features": {
        "tags": {
          "enabled": false
        },
        "due_dates": {
          "enabled": false,
          "start_date": false,
          "remap_due_dates": false,
          "remap_closed_due_date": false
        },
        "checklists": {
          "enabled": true
        },
        "portfolios": {
          "enabled": false
        },
        "custom_fields": {
          "enabled": true
        },
        "time_tracking": {
          "enabled": false
        },
        "time_estimates": {
          "enabled": false
        },
        "dependency_warning": {
          "enabled": false
        },
        "remap_dependencies": {
          "enabled": false
        }
      },
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "multiple_assignees": false
    }
  ]
}
object GetSpacesresponse
{
  "type": "object",
  "title": "GetSpacesresponse",
  "example": {
    "spaces": [
      {
        "id": "790X",
        "name": "Updated Space Name",
        "color": null,
        "avatar": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg",
        "members": [
          {
            "user": {
              "id": "12312312,X",
              "color": null,
              "initials": "JJ",
              "username": "John Jones,",
              "profilePicture": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg,"
            }
          }
        ],
        "private": false,
        "archived": false,
        "features": {
          "tags": {
            "enabled": false
          },
          "due_dates": {
            "enabled": false,
            "start_date": false,
            "remap_due_dates": false,
            "remap_closed_due_date": false
          },
          "checklists": {
            "enabled": true
          },
          "portfolios": {
            "enabled": false
          },
          "custom_fields": {
            "enabled": true
          },
          "time_tracking": {
            "enabled": false
          },
          "time_estimates": {
            "enabled": false
          },
          "dependency_warning": {
            "enabled": false
          },
          "remap_dependencies": {
            "enabled": false
          }
        },
        "statuses": [
          {
            "type": "open",
            "color": "#d3d3d3",
            "status": "to do",
            "orderindex": 0
          },
          {
            "type": "closed",
            "color": "#6bc950",
            "status": "complete",
            "orderindex": 1
          }
        ],
        "admin_can_manage": true,
        "multiple_assignees": false
      },
      {
        "id": "791X",
        "name": "Second Space Name",
        "private": false,
        "features": {
          "tags": {
            "enabled": true
          },
          "due_dates": {
            "enabled": true,
            "start_date": false,
            "remap_due_dates": false,
            "remap_closed_due_date": false
          },
          "checklists": {
            "enabled": true
          },
          "time_tracking": {
            "enabled": true
          },
          "time_estimates": {
            "enabled": true
          }
        },
        "statuses": [
          {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          {
            "type": "closed",
            "color": "#6bc950",
            "status": "Closed",
            "orderindex": 1
          }
        ],
        "multiple_assignees": true
      }
    ]
  },
  "required": [
    "spaces"
  ],
  "properties": {
    "spaces": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Space13"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "spaces": [
        {
          "id": "790X",
          "name": "Updated Space Name",
          "color": null,
          "avatar": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg",
          "members": [
            {
              "user": {
                "id": "12312312,X",
                "color": null,
                "initials": "JJ",
                "username": "John Jones,",
                "profilePicture": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg,"
              }
            }
          ],
          "private": false,
          "archived": false,
          "features": {
            "tags": {
              "enabled": false
            },
            "due_dates": {
              "enabled": false,
              "start_date": false,
              "remap_due_dates": false,
              "remap_closed_due_date": false
            },
            "checklists": {
              "enabled": true
            },
            "portfolios": {
              "enabled": false
            },
            "custom_fields": {
              "enabled": true
            },
            "time_tracking": {
              "enabled": false
            },
            "time_estimates": {
              "enabled": false
            },
            "dependency_warning": {
              "enabled": false
            },
            "remap_dependencies": {
              "enabled": false
            }
          },
          "statuses": [
            {
              "type": "open",
              "color": "#d3d3d3",
              "status": "to do",
              "orderindex": 0
            },
            {
              "type": "closed",
              "color": "#6bc950",
              "status": "complete",
              "orderindex": 1
            }
          ],
          "admin_can_manage": true,
          "multiple_assignees": false
        },
        {
          "id": "791X",
          "name": "Second Space Name",
          "private": false,
          "features": {
            "tags": {
              "enabled": true
            },
            "due_dates": {
              "enabled": true,
              "start_date": false,
              "remap_due_dates": false,
              "remap_closed_due_date": false
            },
            "checklists": {
              "enabled": true
            },
            "time_tracking": {
              "enabled": true
            },
            "time_estimates": {
              "enabled": true
            }
          },
          "statuses": [
            {
              "type": "open",
              "color": "#d3d3d3",
              "status": "Open",
              "orderindex": 0
            },
            {
              "type": "closed",
              "color": "#6bc950",
              "status": "Closed",
              "orderindex": 1
            }
          ],
          "multiple_assignees": true
        }
      ]
    }
  ]
}
object GetTaskCommentsresponse
{
  "type": "object",
  "title": "GetTaskCommentsresponse",
  "example": {
    "comments": [
      {
        "id": "458X",
        "date": "1568036964079",
        "user": {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "comment": [
          {
            "text": "Task comment content"
          }
        ],
        "assignee": {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "resolved": false,
        "reactions": [],
        "assigned_by": {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "comment_text": "Task comment content"
      }
    ]
  },
  "required": [
    "comments"
  ],
  "properties": {
    "comments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Comment"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "comments": [
        {
          "id": "458X",
          "date": "1568036964079",
          "user": {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "comment": [
            {
              "text": "Task comment content"
            }
          ],
          "assignee": {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "resolved": false,
          "reactions": [],
          "assigned_by": {
            "id": 183,
            "color": "#827718",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "comment_text": "Task comment content"
        }
      ]
    }
  ]
}
object GetTaskMembersresponse
{
  "type": "object",
  "title": "GetTaskMembersresponse",
  "example": {
    "members": [
      {
        "id": 812,
        "color": "#FFFFFF",
        "email": "john@example.com",
        "initials": "JD",
        "username": "John Doe",
        "profileInfo": {
          "top_tier_user": null,
          "display_profile": null,
          "verified_ambassador": null,
          "verified_consultant": null,
          "viewed_top_tier_user": null,
          "viewed_verified_ambassador": null,
          "viewed_verified_consultant": null
        },
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/812_nx1.jpg"
      },
      {
        "id": 813,
        "color": null,
        "email": "jane@example.com",
        "initials": "JD",
        "username": "Jane Doe",
        "profileInfo": {
          "top_tier_user": null,
          "display_profile": null,
          "verified_ambassador": null,
          "verified_consultant": null,
          "viewed_top_tier_user": null,
          "viewed_verified_ambassador": null,
          "viewed_verified_consultant": null
        },
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/813_nx1.jpg"
      }
    ]
  },
  "required": [
    "members"
  ],
  "properties": {
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Member5"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "members": [
        {
          "id": 812,
          "color": "#FFFFFF",
          "email": "john@example.com",
          "initials": "JD",
          "username": "John Doe",
          "profileInfo": {
            "top_tier_user": null,
            "display_profile": null,
            "verified_ambassador": null,
            "verified_consultant": null,
            "viewed_top_tier_user": null,
            "viewed_verified_ambassador": null,
            "viewed_verified_consultant": null
          },
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/812_nx1.jpg"
        },
        {
          "id": 813,
          "color": null,
          "email": "jane@example.com",
          "initials": "JD",
          "username": "Jane Doe",
          "profileInfo": {
            "top_tier_user": null,
            "display_profile": null,
            "verified_ambassador": null,
            "verified_consultant": null,
            "viewed_top_tier_user": null,
            "viewed_verified_ambassador": null,
            "viewed_verified_consultant": null
          },
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/813_nx1.jpg"
        }
      ]
    }
  ]
}
object GetTaskTemplatesresponse
{
  "type": "object",
  "title": "GetTaskTemplatesresponse",
  "example": {
    "templates": []
  },
  "required": [
    "templates"
  ],
  "properties": {
    "templates": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "templates": []
    }
  ]
}
object GetTaskresponse
{
  "type": "object",
  "title": "GetTaskresponse",
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator"
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "watchers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "custom_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "checklists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "time_spent": {
      "type": [
        "string",
        "null"
      ]
    },
    "attachments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Attachment"
      }
    },
    "date_closed": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "text_content": {
      "type": "string"
    },
    "custom_fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomFields8"
      },
      "description": ""
    },
    "time_estimate": {
      "type": [
        "string",
        "null"
      ]
    },
    "custom_item_id": {
      "type": [
        "number",
        "null"
      ],
      "description": "A `null` value means this item is a task. A value of `1` is a Milestone. Any other number is a custom task type."
    },
    "markdown_description": {
      "type": "string"
    }
  }
}
object GetTasksTimeinStatusresponse
{
  "type": "object",
  "title": "GetTasksTimeinStatusresponse",
  "example": {
    "current_status": {
      "color": "#d3d3d3",
      "status": "open",
      "total_time": {
        "since": "1604004423494",
        "by_minute": 21708
      }
    },
    "status_history": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "open",
        "orderindex": 0,
        "total_time": {
          "since": "1604004423494",
          "by_minute": 21707
        }
      },
      {
        "type": "custom",
        "color": "#5CF1D4",
        "status": "active status",
        "orderindex": 4,
        "total_time": {
          "since": "1602607941692",
          "by_minute": 23274
        }
      }
    ]
  },
  "required": [
    "current_status",
    "status_history"
  ],
  "properties": {
    "current_status": {
      "$ref": "#/components/schemas/CurrentStatus"
    },
    "status_history": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StatusHistory"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "current_status": {
        "color": "#d3d3d3",
        "status": "open",
        "total_time": {
          "since": "1604004423494",
          "by_minute": 21708
        }
      },
      "status_history": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "open",
          "orderindex": 0,
          "total_time": {
            "since": "1604004423494",
            "by_minute": 21707
          }
        },
        {
          "type": "custom",
          "color": "#5CF1D4",
          "status": "active status",
          "orderindex": 4,
          "total_time": {
            "since": "1602607941692",
            "by_minute": 23274
          }
        }
      ]
    }
  ]
}
object GetTasksresponse
{
  "type": "object",
  "title": "GetViewTasksresponse",
  "example": {
    "tasks": [
      {
        "id": "9hxX",
        "url": "https://app.clickup.com/t/9hx",
        "list": {
          "id": "123X"
        },
        "name": "New Task Name",
        "tags": [],
        "space": {
          "id": "789X"
        },
        "folder": {
          "id": "456X"
        },
        "parent": null,
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "Open",
          "orderindex": 0
        },
        "creator": {
          "id": 183,
          "color": "#827718",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "due_date": null,
        "priority": null,
        "watchers": [],
        "assignees": [],
        "date_done": null,
        "checklists": [],
        "orderindex": "1.00000000000000000000000000000000",
        "start_date": null,
        "time_spent": null,
        "date_closed": null,
        "date_created": "1567780450202",
        "date_updated": "1567780450202",
        "time_estimate": null,
        "custom_item_id": null,
        "markdown_description": "Task description"
      },
      {
        "id": "9hzX",
        "url": "https://app.clickup.com/t/9hz",
        "list": {
          "id": "123X"
        },
        "name": "Second task",
        "tags": [],
        "space": {
          "id": "789X"
        },
        "folder": {
          "id": "456X"
        },
        "parent": null,
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "Open",
          "orderindex": 0
        },
        "creator": {
          "id": 183,
          "color": "#827718",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "due_date": null,
        "priority": null,
        "watchers": [],
        "assignees": [],
        "date_done": null,
        "checklists": [],
        "orderindex": "2.00000000000000000000000000000000",
        "start_date": null,
        "time_spent": null,
        "date_closed": null,
        "date_created": "1567780450202",
        "date_updated": "1567780450202",
        "time_estimate": null,
        "custom_item_id": null
      }
    ]
  },
  "required": [
    "tasks",
    "last_page"
  ],
  "properties": {
    "tasks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Task9"
      },
      "description": ""
    },
    "last_page": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "tasks": [
        {
          "id": "9hxX",
          "url": "https://app.clickup.com/t/9hx",
          "list": {
            "id": "123X"
          },
          "name": "New Task Name",
          "tags": [],
          "space": {
            "id": "789X"
          },
          "folder": {
            "id": "456X"
          },
          "parent": null,
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          "creator": {
            "id": 183,
            "color": "#827718",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "due_date": null,
          "priority": null,
          "watchers": [],
          "assignees": [],
          "date_done": null,
          "checklists": [],
          "orderindex": "1.00000000000000000000000000000000",
          "start_date": null,
          "time_spent": null,
          "date_closed": null,
          "date_created": "1567780450202",
          "date_updated": "1567780450202",
          "time_estimate": null,
          "custom_item_id": null,
          "markdown_description": "Task description"
        },
        {
          "id": "9hzX",
          "url": "https://app.clickup.com/t/9hz",
          "list": {
            "id": "123X"
          },
          "name": "Second task",
          "tags": [],
          "space": {
            "id": "789X"
          },
          "folder": {
            "id": "456X"
          },
          "parent": null,
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          "creator": {
            "id": 183,
            "color": "#827718",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "due_date": null,
          "priority": null,
          "watchers": [],
          "assignees": [],
          "date_done": null,
          "checklists": [],
          "orderindex": "2.00000000000000000000000000000000",
          "start_date": null,
          "time_spent": null,
          "date_closed": null,
          "date_created": "1567780450202",
          "date_updated": "1567780450202",
          "time_estimate": null,
          "custom_item_id": null
        }
      ]
    }
  ]
}
object GetTeamViewsresponse
{
  "type": "object",
  "title": "GetTeamViewsresponse",
  "example": {
    "views": [
      {
        "id": "3c-105X",
        "name": "New View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "512X",
          "type": 7
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    ]
  },
  "required": [
    "views"
  ],
  "properties": {
    "views": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/View"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "views": [
        {
          "id": "3c-105X",
          "name": "New View Name",
          "type": "list",
          "divide": {
            "dir": null,
            "field": null,
            "collapsed": []
          },
          "parent": {
            "id": "512X",
            "type": 7
          },
          "columns": {
            "fields": []
          },
          "filters": {
            "op": "AND",
            "fields": [],
            "search": "",
            "show_closed": false
          },
          "sorting": {
            "fields": []
          },
          "grouping": {
            "dir": 1,
            "field": "status",
            "ignore": false,
            "collapsed": []
          },
          "settings": {
            "me_comments": true,
            "me_subtasks": true,
            "show_images": true,
            "me_checklists": true,
            "show_subtasks": 3,
            "show_assignees": true,
            "show_task_locations": false,
            "show_closed_subtasks": false,
            "collapse_empty_columns": null,
            "show_subtask_parent_names": false
          },
          "team_sidebar": {
            "assignees": [],
            "unassigned_tasks": false,
            "assigned_comments": false
          }
        }
      ]
    }
  ]
}
object GetTeamsresponse
{
  "type": "object",
  "title": "GetTeamsresponse",
  "example": {
    "groups": [
      {
        "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
        "name": "product team",
        "avatar": {
          "icon": null,
          "color": null,
          "source": null,
          "attachment_id": null
        },
        "handle": "product",
        "userid": 301123,
        "members": [
          {
            "id": 183,
            "color": "#40BC86",
            "email": "jerry@example.com",
            "initials": "J",
            "username": "Jerry",
            "profilePicture": null
          },
          {
            "id": 184,
            "color": "#FF8600",
            "email": "sam@example.com",
            "initials": "S",
            "username": "Sam",
            "profilePicture": null
          }
        ],
        "team_id": "123456",
        "initials": "PT",
        "date_created": "1640122639829"
      },
      {
        "id": "fd31be63-41f2-4320-9043-9786fdf643d6X",
        "name": "HR department",
        "avatar": {
          "icon": null,
          "color": null,
          "source": null,
          "attachment_id": null
        },
        "handle": "hr-dept",
        "userid": 301828,
        "members": [
          {
            "id": 183,
            "color": "#40BC86",
            "email": "jerry@example.com",
            "initials": "J",
            "username": "Jerry",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
          }
        ],
        "team_id": "301540",
        "initials": "HD",
        "date_created": "1627087990293"
      }
    ]
  },
  "required": [
    "groups"
  ],
  "properties": {
    "groups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Group"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "groups": [
        {
          "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
          "name": "product team",
          "avatar": {
            "icon": null,
            "color": null,
            "source": null,
            "attachment_id": null
          },
          "handle": "product",
          "userid": 301123,
          "members": [
            {
              "id": 183,
              "color": "#40BC86",
              "email": "jerry@example.com",
              "initials": "J",
              "username": "Jerry",
              "profilePicture": null
            },
            {
              "id": 184,
              "color": "#FF8600",
              "email": "sam@example.com",
              "initials": "S",
              "username": "Sam",
              "profilePicture": null
            }
          ],
          "team_id": "123456",
          "initials": "PT",
          "date_created": "1640122639829"
        },
        {
          "id": "fd31be63-41f2-4320-9043-9786fdf643d6X",
          "name": "HR department",
          "avatar": {
            "icon": null,
            "color": null,
            "source": null,
            "attachment_id": null
          },
          "handle": "hr-dept",
          "userid": 301828,
          "members": [
            {
              "id": 183,
              "color": "#40BC86",
              "email": "jerry@example.com",
              "initials": "J",
              "username": "Jerry",
              "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
            }
          ],
          "team_id": "301540",
          "initials": "HD",
          "date_created": "1627087990293"
        }
      ]
    }
  ]
}
object GetUserresponse
{
  "type": "object",
  "title": "GetUserresponse",
  "example": {
    "member": {
      "user": {
        "id": 184,
        "role": 3,
        "color": null,
        "email": "user@example.com",
        "initials": "UN",
        "username": "User Name",
        "custom_role": {
          "id": 998877,
          "name": "member custom"
        },
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      }
    }
  },
  "properties": {
    "member": {
      "$ref": "#/components/schemas/Member7"
    }
  },
  "x-examples": [
    {
      "member": {
        "user": {
          "id": 184,
          "role": 3,
          "color": null,
          "email": "user@example.com",
          "initials": "UN",
          "username": "User Name",
          "custom_role": {
            "id": 998877,
            "name": "member custom"
          },
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        }
      }
    }
  ]
}
object GetViewTasksresponse
{
  "type": "object",
  "title": "GetViewTasksresponse",
  "example": {
    "tasks": [
      {
        "id": "9hxX",
        "url": "https://app.clickup.com/t/9hx",
        "list": {
          "id": "123X"
        },
        "name": "New Task Name",
        "tags": [],
        "space": {
          "id": "789X"
        },
        "folder": {
          "id": "456X"
        },
        "parent": null,
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "Open",
          "orderindex": 0
        },
        "creator": {
          "id": 183,
          "color": "#827718",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "due_date": null,
        "priority": null,
        "assignees": [],
        "date_done": null,
        "checklists": [],
        "orderindex": "1.00000000000000000000000000000000",
        "start_date": null,
        "time_spent": null,
        "date_closed": null,
        "date_created": "1567780450202",
        "date_updated": "1567780450202",
        "time_estimate": null
      },
      {
        "id": "9hzX",
        "url": "https://app.clickup.com/t/9hz",
        "list": {
          "id": "123X"
        },
        "name": "Second task",
        "tags": [],
        "space": {
          "id": "789X"
        },
        "folder": {
          "id": "456X"
        },
        "parent": null,
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "Open",
          "orderindex": 0
        },
        "creator": {
          "id": 183,
          "color": "#827718",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        },
        "due_date": null,
        "priority": null,
        "assignees": [],
        "date_done": null,
        "checklists": [],
        "orderindex": "2.00000000000000000000000000000000",
        "start_date": null,
        "time_spent": null,
        "date_closed": null,
        "date_created": "1567780450202",
        "date_updated": "1567780450202",
        "time_estimate": null
      }
    ],
    "last_page": true
  },
  "required": [
    "tasks",
    "last_page"
  ],
  "properties": {
    "tasks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Task9"
      },
      "description": ""
    },
    "last_page": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "tasks": [
        {
          "id": "9hxX",
          "url": "https://app.clickup.com/t/9hx",
          "list": {
            "id": "123X"
          },
          "name": "New Task Name",
          "tags": [],
          "space": {
            "id": "789X"
          },
          "folder": {
            "id": "456X"
          },
          "parent": null,
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          "creator": {
            "id": 183,
            "color": "#827718",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "due_date": null,
          "priority": null,
          "assignees": [],
          "date_done": null,
          "checklists": [],
          "orderindex": "1.00000000000000000000000000000000",
          "start_date": null,
          "time_spent": null,
          "date_closed": null,
          "date_created": "1567780450202",
          "date_updated": "1567780450202",
          "time_estimate": null
        },
        {
          "id": "9hzX",
          "url": "https://app.clickup.com/t/9hz",
          "list": {
            "id": "123X"
          },
          "name": "Second task",
          "tags": [],
          "space": {
            "id": "789X"
          },
          "folder": {
            "id": "456X"
          },
          "parent": null,
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          "creator": {
            "id": 183,
            "color": "#827718",
            "username": "John Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
          },
          "due_date": null,
          "priority": null,
          "assignees": [],
          "date_done": null,
          "checklists": [],
          "orderindex": "2.00000000000000000000000000000000",
          "start_date": null,
          "time_spent": null,
          "date_closed": null,
          "date_created": "1567780450202",
          "date_updated": "1567780450202",
          "time_estimate": null
        }
      ],
      "last_page": true
    }
  ]
}
object GetViewresponse
{
  "type": "object",
  "title": "GetViewresponse",
  "example": {
    "view": {
      "id": "3c-105X",
      "name": "New View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "512X",
        "type": 7
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  },
  "required": [
    "view"
  ],
  "properties": {
    "view": {
      "$ref": "#/components/schemas/View"
    }
  },
  "x-examples": [
    {
      "view": {
        "id": "3c-105X",
        "name": "New View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "512X",
          "type": 7
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  ]
}
object GetWebhooksresponse
{
  "type": "object",
  "title": "GetWebhooksresponse",
  "example": {
    "webhooks": [
      {
        "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
        "events": [
          "taskCreated",
          "taskUpdated",
          "taskDeleted",
          "taskPriorityUpdated",
          "taskStatusUpdated",
          "taskAssigneeUpdated",
          "taskDueDateUpdated",
          "taskTagUpdated",
          "taskMoved",
          "taskCommentPosted",
          "taskCommentUpdated",
          "taskTimeEstimateUpdated",
          "taskTimeTrackedUpdated",
          "listCreated",
          "listUpdated",
          "listDeleted",
          "folderCreated",
          "folderUpdated",
          "folderDeleted",
          "spaceCreated",
          "spaceUpdated",
          "spaceDeleted",
          "goalCreated",
          "goalUpdated",
          "goalDeleted",
          "keyResultCreated",
          "keyResultUpdated",
          "keyResultDeleted"
        ],
        "health": {
          "status": "failing",
          "fail_count": 5
        },
        "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
        "userid": 183,
        "list_id": null,
        "task_id": null,
        "team_id": 108,
        "endpoint": "https://yourdomain.com/webhook",
        "space_id": null,
        "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
        "folder_id": null
      }
    ]
  },
  "required": [
    "webhooks"
  ],
  "properties": {
    "webhooks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Webhook"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "webhooks": [
        {
          "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
          "events": [
            "taskCreated",
            "taskUpdated",
            "taskDeleted",
            "taskPriorityUpdated",
            "taskStatusUpdated",
            "taskAssigneeUpdated",
            "taskDueDateUpdated",
            "taskTagUpdated",
            "taskMoved",
            "taskCommentPosted",
            "taskCommentUpdated",
            "taskTimeEstimateUpdated",
            "taskTimeTrackedUpdated",
            "listCreated",
            "listUpdated",
            "listDeleted",
            "folderCreated",
            "folderUpdated",
            "folderDeleted",
            "spaceCreated",
            "spaceUpdated",
            "spaceDeleted",
            "goalCreated",
            "goalUpdated",
            "goalDeleted",
            "keyResultCreated",
            "keyResultUpdated",
            "keyResultDeleted"
          ],
          "health": {
            "status": "failing",
            "fail_count": 5
          },
          "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
          "userid": 183,
          "list_id": null,
          "task_id": null,
          "team_id": 108,
          "endpoint": "https://yourdomain.com/webhook",
          "space_id": null,
          "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
          "folder_id": null
        }
      ]
    }
  ]
}
object GetWorkspaceplanresponse
{
  "type": "object",
  "title": "GetWorkspaceplanresponse",
  "example": {
    "plan_id": 4,
    "plan_name": "Enterprise"
  },
  "properties": {
    "plan_id": {
      "type": "integer"
    },
    "plan_name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "plan_id": 4,
      "plan_name": "Enterprise"
    }
  ]
}
object GetWorkspaceseatsresponse
{
  "type": "object",
  "title": "GetWorkspaceseatsresponse",
  "example": {
    "guests": {
      "empty_guest_seats": 48,
      "total_guest_seats": 50,
      "filled_guest_seats": 2
    },
    "members": {
      "empty_member_seats": 0,
      "total_member_seats": 9,
      "filled_members_seats": 9
    }
  },
  "required": [
    "members",
    "guests"
  ],
  "properties": {
    "guests": {
      "$ref": "#/components/schemas/Guests"
    },
    "members": {
      "$ref": "#/components/schemas/Members"
    }
  },
  "x-examples": [
    {
      "guests": {
        "empty_guest_seats": 48,
        "total_guest_seats": 50,
        "filled_guest_seats": 2
      },
      "members": {
        "empty_member_seats": 0,
        "total_member_seats": 9,
        "filled_members_seats": 9
      }
    }
  ]
}
object Getalltagsfromtimeentriesresponse
{
  "type": "object",
  "title": "Getalltagsfromtimeentriesresponse",
  "example": {
    "data": [
      {
        "name": "name of tag",
        "tag_bg": "#BF55EC",
        "tag_fg": "#FFFFFF",
        "creator": 1
      }
    ]
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Data1"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "data": [
        {
          "name": "name of tag",
          "tag_bg": "#BF55EC",
          "tag_fg": "#FFFFFF",
          "creator": 1
        }
      ]
    }
  ]
}
object Getrunningtimeentryresponse
{
  "type": "object",
  "title": "Getrunningtimeentryresponse",
  "example": {
    "data": {
      "at": "1595293042560",
      "id": "timer_idX",
      "wid": "workspace_id",
      "tags": [],
      "task": {
        "id": "task_idX",
        "name": "task_name",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        }
      },
      "user": {
        "id": 300528,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1595293042560",
      "billable": false,
      "duration": -25655,
      "description": ""
    }
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "$ref": "#/components/schemas/Data"
    }
  },
  "x-examples": [
    {
      "data": {
        "at": "1595293042560",
        "id": "timer_idX",
        "wid": "workspace_id",
        "tags": [],
        "task": {
          "id": "task_idX",
          "name": "task_name",
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "to do",
            "orderindex": 0
          }
        },
        "user": {
          "id": 300528,
          "color": "#08c7e0",
          "email": "test@gmail.com",
          "initials": "JK",
          "username": "first_name last_name",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
        },
        "start": "1595293042560",
        "billable": false,
        "duration": -25655,
        "description": ""
      }
    }
  ]
}
object Getsingulartimeentryresponse
{
  "type": "object",
  "title": "Getsingulartimeentryresponse",
  "example": {
    "data": [
      {
        "at": "1592845899021",
        "id": "timer_idX",
        "end": "1592845899021",
        "wid": "workspace_id",
        "tags": [],
        "user": {
          "id": 1,
          "color": "#08c7e0",
          "email": "test@gmail.com",
          "initials": "JK",
          "username": "first_name last_name",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
        },
        "start": "1592841559129",
        "source": "clickup",
        "billable": false,
        "duration": "4339892",
        "task_url": "https://staging.clickup.com/t/rnmuwz7",
        "task_tags": [
          {
            "name": "content-request",
            "tag_bg": "#2ecd6f",
            "tag_fg": "#800000",
            "creator": 301828
          },
          {
            "name": "marketing-okr",
            "tag_bg": "#7C4DFF",
            "tag_fg": "#800000",
            "creator": 301828
          }
        ],
        "description": "",
        "task_location": {
          "list_id": 1560300071,
          "space_id": 22800253,
          "folder_id": 468300080,
          "list_name": "List",
          "space_name": "Space",
          "folder_name": "Folder"
        }
      }
    ]
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Datum2"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "data": [
        {
          "at": "1592845899021",
          "id": "timer_idX",
          "end": "1592845899021",
          "wid": "workspace_id",
          "tags": [],
          "user": {
            "id": 1,
            "color": "#08c7e0",
            "email": "test@gmail.com",
            "initials": "JK",
            "username": "first_name last_name",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
          },
          "start": "1592841559129",
          "source": "clickup",
          "billable": false,
          "duration": "4339892",
          "task_url": "https://staging.clickup.com/t/rnmuwz7",
          "task_tags": [
            {
              "name": "content-request",
              "tag_bg": "#2ecd6f",
              "tag_fg": "#800000",
              "creator": 301828
            },
            {
              "name": "marketing-okr",
              "tag_bg": "#7C4DFF",
              "tag_fg": "#800000",
              "creator": 301828
            }
          ],
          "description": "",
          "task_location": {
            "list_id": 1560300071,
            "space_id": 22800253,
            "folder_id": 468300080,
            "list_name": "List",
            "space_name": "Space",
            "folder_name": "Folder"
          }
        }
      ]
    }
  ]
}
object Gettimeentrieswithinadaterangeresponse
{
  "type": "object",
  "title": "Gettimeentrieswithinadaterangeresponse",
  "example": {
    "data": [
      {
        "at": "1592845899021",
        "id": "1963465985517105840X",
        "end": 1592845899021,
        "wid": "300702",
        "tags": [],
        "task": {
          "id": "1vwwavvX",
          "name": "woof",
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "open yes",
            "orderindex": 0
          },
          "custom_id": "JOSH-917",
          "custom_type": null
        },
        "user": {
          "id": 1,
          "color": "#08c7e0",
          "email": "test@gmail.com",
          "initials": "JK",
          "username": "first_name last_name",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/1_HHk.jpg"
        },
        "start": 1592841559129,
        "source": "clickup",
        "billable": false,
        "duration": "4339892",
        "task_url": "https://staging.clickup.com/t/1vwwavv",
        "task_tags": [
          {
            "name": "content-request",
            "tag_bg": "#2ecd6f",
            "tag_fg": "#800000",
            "creator": 301828
          },
          {
            "name": "marketing-okr",
            "tag_bg": "#7C4DFF",
            "tag_fg": "#800000",
            "creator": 301828
          }
        ],
        "description": "",
        "task_location": {
          "list_id": 1560300071,
          "space_id": 22800253,
          "folder_id": 468300080,
          "list_name": "List",
          "space_name": "Space",
          "folder_name": "Folder"
        }
      }
    ]
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Datum1"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "data": [
        {
          "at": "1592845899021",
          "id": "1963465985517105840X",
          "end": 1592845899021,
          "wid": "300702",
          "tags": [],
          "task": {
            "id": "1vwwavvX",
            "name": "woof",
            "status": {
              "type": "open",
              "color": "#d3d3d3",
              "status": "open yes",
              "orderindex": 0
            },
            "custom_id": "JOSH-917",
            "custom_type": null
          },
          "user": {
            "id": 1,
            "color": "#08c7e0",
            "email": "test@gmail.com",
            "initials": "JK",
            "username": "first_name last_name",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/1_HHk.jpg"
          },
          "start": 1592841559129,
          "source": "clickup",
          "billable": false,
          "duration": "4339892",
          "task_url": "https://staging.clickup.com/t/1vwwavv",
          "task_tags": [
            {
              "name": "content-request",
              "tag_bg": "#2ecd6f",
              "tag_fg": "#800000",
              "creator": 301828
            },
            {
              "name": "marketing-okr",
              "tag_bg": "#7C4DFF",
              "tag_fg": "#800000",
              "creator": 301828
            }
          ],
          "description": "",
          "task_location": {
            "list_id": 1560300071,
            "space_id": 22800253,
            "folder_id": 468300080,
            "list_name": "List",
            "space_name": "Space",
            "folder_name": "Folder"
          }
        }
      ]
    }
  ]
}
object Gettrackedtimeresponse
{
  "type": "object",
  "title": "Gettrackedtimeresponse",
  "example": {
    "data": [
      {
        "time": 1000000,
        "user": {
          "id": 1,
          "color": "#795548",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": null
        },
        "intervals": [
          {
            "id": "318X",
            "end": null,
            "time": "1000000",
            "start": null,
            "source": "chrome",
            "date_added": "1569983937761"
          }
        ]
      }
    ]
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Datum"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "data": [
        {
          "time": 1000000,
          "user": {
            "id": 1,
            "color": "#795548",
            "email": "johndoe@gmail.com",
            "initials": "JD",
            "username": "John Doe",
            "profilePicture": null
          },
          "intervals": [
            {
              "id": "318X",
              "end": null,
              "time": "1000000",
              "start": null,
              "source": "chrome",
              "date_added": "1569983937761"
            }
          ]
        }
      ]
    }
  ]
}
object Goal
{
  "type": "object",
  "title": "Goal",
  "example": {
    "id": "e53a033c-900e-462d-a849-4a216b06d930X",
    "name": "Goal Name",
    "color": "#32a852",
    "owners": [
      {
        "id": 183,
        "color": "#827718",
        "email": "johndoe@gmail.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      }
    ],
    "creator": 183,
    "history": [],
    "members": [],
    "private": false,
    "team_id": "512",
    "archived": false,
    "due_date": "1568036964079",
    "folder_id": null,
    "pretty_id": "6",
    "pretty_url": "https://app.clickup.com/512/goals/6",
    "start_date": null,
    "description": "Goal Description",
    "key_results": [],
    "date_created": "1568044355026",
    "multiple_owners": true,
    "percent_completed": 0
  },
  "required": [
    "id",
    "name",
    "team_id",
    "date_created",
    "start_date",
    "due_date",
    "description",
    "private",
    "archived",
    "creator",
    "color",
    "pretty_id",
    "multiple_owners",
    "folder_id",
    "members",
    "owners",
    "key_results",
    "percent_completed",
    "history",
    "pretty_url"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "owners": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Owner"
      },
      "description": ""
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "history": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "members": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "private": {
      "type": "boolean"
    },
    "team_id": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "due_date": {
      "type": "string"
    },
    "folder_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "pretty_id": {
      "type": "string"
    },
    "pretty_url": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": "string"
    },
    "key_results": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "date_created": {
      "type": "string"
    },
    "multiple_owners": {
      "type": "boolean"
    },
    "percent_completed": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": "e53a033c-900e-462d-a849-4a216b06d930X",
      "name": "Goal Name",
      "color": "#32a852",
      "owners": [
        {
          "id": 183,
          "color": "#827718",
          "email": "johndoe@gmail.com",
          "initials": "JD",
          "username": "John Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
        }
      ],
      "creator": 183,
      "history": [],
      "members": [],
      "private": false,
      "team_id": "512",
      "archived": false,
      "due_date": "1568036964079",
      "folder_id": null,
      "pretty_id": "6",
      "pretty_url": "https://app.clickup.com/512/goals/6",
      "start_date": null,
      "description": "Goal Description",
      "key_results": [],
      "date_created": "1568044355026",
      "multiple_owners": true,
      "percent_completed": 0
    }
  ]
}
object Goal2
{
  "type": "object",
  "title": "Goal2",
  "example": {
    "id": "e53a033c-900e-462d-a849-4a216b06d930X",
    "name": "Goal ABC",
    "color": "#32a852",
    "owner": null,
    "owners": [],
    "pinned": false,
    "creator": 182,
    "members": [
      {
        "id": 182,
        "color": "#827718",
        "email": "janedoe@gmail.com",
        "initials": "JD",
        "username": "Jane Doe",
        "isCreator": true,
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
        "permission_level": "edit"
      }
    ],
    "private": false,
    "team_id": "512",
    "archived": false,
    "due_date": "1568036964079",
    "folder_id": null,
    "pretty_id": "6",
    "start_date": null,
    "description": "Updated Goal Description",
    "last_update": "1626132992152",
    "date_created": "1568044355026",
    "date_updated": "1626130440221",
    "editor_token": "goal:792c3027-83a2-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485ed15e675",
    "group_members": [],
    "multiple_owners": true,
    "key_result_count": 1,
    "percent_completed": 0
  },
  "required": [
    "id",
    "pretty_id",
    "name",
    "team_id",
    "creator",
    "owner",
    "color",
    "date_created",
    "start_date",
    "due_date",
    "description",
    "private",
    "archived",
    "multiple_owners",
    "editor_token",
    "date_updated",
    "last_update",
    "folder_id",
    "pinned",
    "owners",
    "key_result_count",
    "members",
    "group_members",
    "percent_completed"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "owner": {
      "type": [
        "string",
        "null"
      ]
    },
    "owners": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "pinned": {
      "type": "boolean"
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Member1"
      },
      "description": ""
    },
    "private": {
      "type": "boolean"
    },
    "team_id": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "due_date": {
      "type": "string"
    },
    "folder_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "pretty_id": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": "string"
    },
    "last_update": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "editor_token": {
      "type": "string"
    },
    "group_members": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "multiple_owners": {
      "type": "boolean"
    },
    "key_result_count": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "percent_completed": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": "e53a033c-900e-462d-a849-4a216b06d930X",
      "name": "Goal ABC",
      "color": "#32a852",
      "owner": null,
      "owners": [],
      "pinned": false,
      "creator": 182,
      "members": [
        {
          "id": 182,
          "color": "#827718",
          "email": "janedoe@gmail.com",
          "initials": "JD",
          "username": "Jane Doe",
          "isCreator": true,
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
          "permission_level": "edit"
        }
      ],
      "private": false,
      "team_id": "512",
      "archived": false,
      "due_date": "1568036964079",
      "folder_id": null,
      "pretty_id": "6",
      "start_date": null,
      "description": "Updated Goal Description",
      "last_update": "1626132992152",
      "date_created": "1568044355026",
      "date_updated": "1626130440221",
      "editor_token": "goal:792c3027-83a2-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485ed15e675",
      "group_members": [],
      "multiple_owners": true,
      "key_result_count": 1,
      "percent_completed": 0
    }
  ]
}
object Goal3
{
  "type": "object",
  "title": "Goal3",
  "example": {
    "id": "e53a033c-900e-462d-a849-4a216b06d930X",
    "name": "Q1 Goals",
    "color": "#32a852",
    "owner": null,
    "owners": [],
    "pinned": false,
    "creator": 182,
    "members": [
      {
        "id": 182,
        "color": "#827718",
        "email": "janedoe@gmail.com",
        "initials": "JD",
        "username": "Jane Doe",
        "isCreator": true,
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
        "permission_level": "edit"
      }
    ],
    "private": false,
    "team_id": "512",
    "archived": false,
    "due_date": "1568036964079",
    "folder_id": "05921253-7737-44af-a1aa-36fd11244e6f",
    "pretty_id": "8",
    "start_date": null,
    "description": "Goal for Q1",
    "last_update": "1626132992152",
    "date_created": "1568044355026",
    "date_updated": "1626130440221",
    "editor_token": "goal:792c3027-83b5-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485fc22d477",
    "folder_access": true,
    "group_members": [],
    "multiple_owners": true,
    "key_result_count": 1,
    "percent_completed": 1
  },
  "required": [
    "id",
    "pretty_id",
    "name",
    "team_id",
    "creator",
    "owner",
    "color",
    "date_created",
    "start_date",
    "due_date",
    "description",
    "private",
    "archived",
    "multiple_owners",
    "editor_token",
    "date_updated",
    "last_update",
    "folder_id",
    "folder_access",
    "pinned",
    "owners",
    "key_result_count",
    "members",
    "group_members",
    "percent_completed"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "owner": {
      "type": [
        "string",
        "null"
      ]
    },
    "owners": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "pinned": {
      "type": "boolean"
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Member1"
      },
      "description": ""
    },
    "private": {
      "type": "boolean"
    },
    "team_id": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "due_date": {
      "type": "string"
    },
    "folder_id": {
      "type": "string"
    },
    "pretty_id": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": "string"
    },
    "last_update": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "editor_token": {
      "type": "string"
    },
    "folder_access": {
      "type": "boolean"
    },
    "group_members": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "multiple_owners": {
      "type": "boolean"
    },
    "key_result_count": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "percent_completed": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": "e53a033c-900e-462d-a849-4a216b06d930X",
      "name": "Q1 Goals",
      "color": "#32a852",
      "owner": null,
      "owners": [],
      "pinned": false,
      "creator": 182,
      "members": [
        {
          "id": 182,
          "color": "#827718",
          "email": "janedoe@gmail.com",
          "initials": "JD",
          "username": "Jane Doe",
          "isCreator": true,
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
          "permission_level": "edit"
        }
      ],
      "private": false,
      "team_id": "512",
      "archived": false,
      "due_date": "1568036964079",
      "folder_id": "05921253-7737-44af-a1aa-36fd11244e6f",
      "pretty_id": "8",
      "start_date": null,
      "description": "Goal for Q1",
      "last_update": "1626132992152",
      "date_created": "1568044355026",
      "date_updated": "1626130440221",
      "editor_token": "goal:792c3027-83b5-45de-be96-2f623b5f9078:1626303240249:38fd99e8-f989-4125-9a05-19ead0ed83a6:57bdc749-4ca6-4082-a78e-3485fc22d477",
      "folder_access": true,
      "group_members": [],
      "multiple_owners": true,
      "key_result_count": 1,
      "percent_completed": 1
    }
  ]
}
object GoalsRemoveGoalResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object GoalsRemoveTargetResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object Group
{
  "type": "object",
  "title": "Group",
  "example": {
    "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
    "name": "product team",
    "avatar": {
      "icon": null,
      "color": null,
      "source": null,
      "attachment_id": null
    },
    "handle": "product",
    "userid": 301123,
    "members": [
      {
        "id": 183,
        "color": "#40BC86",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": null
      },
      {
        "id": 184,
        "color": "#FF8600",
        "email": "sam@example.com",
        "initials": "S",
        "username": "Sam",
        "profilePicture": null
      }
    ],
    "team_id": "123456",
    "initials": "PT",
    "date_created": "1640122639829"
  },
  "required": [
    "id",
    "team_id",
    "userid",
    "name",
    "handle",
    "date_created",
    "initials",
    "members",
    "avatar"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "avatar": {
      "$ref": "#/components/schemas/Avatar"
    },
    "handle": {
      "type": "string"
    },
    "userid": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Members3"
      },
      "description": ""
    },
    "team_id": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
      "name": "product team",
      "avatar": {
        "icon": null,
        "color": null,
        "source": null,
        "attachment_id": null
      },
      "handle": "product",
      "userid": 301123,
      "members": [
        {
          "id": 183,
          "color": "#40BC86",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": null
        },
        {
          "id": 184,
          "color": "#FF8600",
          "email": "sam@example.com",
          "initials": "S",
          "username": "Sam",
          "profilePicture": null
        }
      ],
      "team_id": "123456",
      "initials": "PT",
      "date_created": "1640122639829"
    }
  ]
}
object Grouping
{
  "type": "object",
  "title": "Grouping",
  "example": {
    "dir": 1,
    "field": "status",
    "ignore": false,
    "collapsed": []
  },
  "required": [
    "field",
    "dir",
    "collapsed",
    "ignore"
  ],
  "properties": {
    "dir": {
      "type": "integer",
      "description": "Set a group sort order using `1` or `-1`.\\\n \\\nFor example, use `1`show tasks with urgent priority at the top of your view, and tasks with no priority at the bottom.\\\n \\\nUse `-1` to reverse the order to show tasks with no priority at the top of your view.",
      "contentEncoding": "int32"
    },
    "field": {
      "type": "string",
      "description": "Set the field to group by.\\\n \\\nOptions include: `none`, `status`, `priority`, `assignee`, `tag`, or `dueDate`."
    },
    "ignore": {
      "type": "boolean"
    },
    "collapsed": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "dir": 1,
      "field": "status",
      "ignore": false,
      "collapsed": []
    }
  ]
}
object Guest
{
  "type": "object",
  "title": "Guest",
  "example": {
    "user": {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "custom_role": {
        "id": 12345,
        "name": "guest custom"
      },
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "shared": {
      "lists": [],
      "tasks": [],
      "folders": []
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "can_edit_tags": true,
    "can_create_views": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "user",
    "invited_by",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_edit_tags",
    "can_create_views",
    "shared"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User5"
    },
    "shared": {
      "$ref": "#/components/schemas/Shared"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "can_create_views": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "custom_role": {
          "id": 12345,
          "name": "guest custom"
        },
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_create_views": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object Guest1
{
  "type": "object",
  "title": "Guest1",
  "example": {
    "user": {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "shared": {
      "lists": [],
      "tasks": [
        {
          "id": "c04X",
          "url": "https://app.clickup.com/t/c04",
          "list": {
            "id": "1752X",
            "name": "Shared with me",
            "access": false
          },
          "name": "Task Name",
          "tags": [],
          "space": {
            "id": "380X"
          },
          "folder": {
            "id": "1217X",
            "name": "Shared with me",
            "access": false,
            "hidden": false
          },
          "parent": null,
          "points": null,
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          "creator": {
            "id": 183,
            "color": "#827718",
            "username": "Jerry",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
          },
          "team_id": "108",
          "archived": false,
          "due_date": "1508369194377",
          "priority": {
            "id": "1X",
            "color": "#f50000",
            "priority": "urgent",
            "orderindex": "1"
          },
          "assignees": [],
          "checklists": [],
          "orderindex": "0",
          "start_date": null,
          "date_closed": null,
          "date_created": "1574718405408",
          "date_updated": "1574722145869",
          "dependencies": [],
          "custom_fields": [],
          "time_estimate": null,
          "permission_level": "read"
        }
      ],
      "folders": []
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "can_edit_tags": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "user",
    "invited_by",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_edit_tags",
    "shared"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User7"
    },
    "shared": {
      "$ref": "#/components/schemas/Shared1"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [
          {
            "id": "c04X",
            "url": "https://app.clickup.com/t/c04",
            "list": {
              "id": "1752X",
              "name": "Shared with me",
              "access": false
            },
            "name": "Task Name",
            "tags": [],
            "space": {
              "id": "380X"
            },
            "folder": {
              "id": "1217X",
              "name": "Shared with me",
              "access": false,
              "hidden": false
            },
            "parent": null,
            "points": null,
            "status": {
              "type": "open",
              "color": "#d3d3d3",
              "status": "Open",
              "orderindex": 0
            },
            "creator": {
              "id": 183,
              "color": "#827718",
              "username": "Jerry",
              "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
            },
            "team_id": "108",
            "archived": false,
            "due_date": "1508369194377",
            "priority": {
              "id": "1X",
              "color": "#f50000",
              "priority": "urgent",
              "orderindex": "1"
            },
            "assignees": [],
            "checklists": [],
            "orderindex": "0",
            "start_date": null,
            "date_closed": null,
            "date_created": "1574718405408",
            "date_updated": "1574722145869",
            "dependencies": [],
            "custom_fields": [],
            "time_estimate": null,
            "permission_level": "read"
          }
        ],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object Guest2
{
  "type": "object",
  "title": "Guest2",
  "example": {
    "user": {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "shared": {
      "lists": [],
      "tasks": [],
      "folders": []
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "can_edit_tags": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "user",
    "invited_by",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_edit_tags",
    "shared"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User7"
    },
    "shared": {
      "$ref": "#/components/schemas/Shared"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object Guest3
{
  "type": "object",
  "title": "Guest3",
  "example": {
    "user": {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "shared": {
      "lists": [
        {
          "id": "1427X",
          "name": "List Name",
          "status": null,
          "archived": false,
          "assignee": null,
          "due_date": null,
          "priority": null,
          "statuses": [
            {
              "type": "open",
              "color": "#d3d3d3",
              "status": "Open",
              "orderindex": 0
            },
            {
              "type": "closed",
              "color": "#6bc950",
              "status": "Closed",
              "orderindex": 5
            }
          ],
          "orderindex": 1,
          "start_date": null,
          "task_count": "5",
          "permission_level": "read",
          "override_statuses": true
        }
      ],
      "tasks": [],
      "folders": []
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "can_edit_tags": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "user",
    "invited_by",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_edit_tags",
    "shared"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User7"
    },
    "shared": {
      "$ref": "#/components/schemas/Shared3"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [
          {
            "id": "1427X",
            "name": "List Name",
            "status": null,
            "archived": false,
            "assignee": null,
            "due_date": null,
            "priority": null,
            "statuses": [
              {
                "type": "open",
                "color": "#d3d3d3",
                "status": "Open",
                "orderindex": 0
              },
              {
                "type": "closed",
                "color": "#6bc950",
                "status": "Closed",
                "orderindex": 5
              }
            ],
            "orderindex": 1,
            "start_date": null,
            "task_count": "5",
            "permission_level": "read",
            "override_statuses": true
          }
        ],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object Guest5
{
  "type": "object",
  "title": "Guest5",
  "example": {
    "user": {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "shared": {
      "lists": [],
      "tasks": [],
      "folders": [
        {
          "id": "1057X",
          "name": "Folder Name",
          "lists": [],
          "hidden": false,
          "archived": false,
          "statuses": [
            {
              "type": "open",
              "color": "#d3d3d3",
              "status": "Open",
              "orderindex": 0
            },
            {
              "type": "closed",
              "color": "#6bc950",
              "status": "Closed",
              "orderindex": 5
            }
          ],
          "orderindex": 5,
          "task_count": "20",
          "permission_level": "read",
          "override_statuses": true
        }
      ]
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "can_edit_tags": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "user",
    "invited_by",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_edit_tags",
    "shared"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User7"
    },
    "shared": {
      "$ref": "#/components/schemas/Shared5"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": [
          {
            "id": "1057X",
            "name": "Folder Name",
            "lists": [],
            "hidden": false,
            "archived": false,
            "statuses": [
              {
                "type": "open",
                "color": "#d3d3d3",
                "status": "Open",
                "orderindex": 0
              },
              {
                "type": "closed",
                "color": "#6bc950",
                "status": "Closed",
                "orderindex": 5
              }
            ],
            "orderindex": 5,
            "task_count": "20",
            "permission_level": "read",
            "override_statuses": true
          }
        ]
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object Guests
{
  "type": "object",
  "title": "Guests",
  "example": {
    "empty_guest_seats": 48,
    "total_guest_seats": 50,
    "filled_guest_seats": 2
  },
  "required": [
    "filled_guest_seats",
    "total_guest_seats",
    "empty_guest_seats"
  ],
  "properties": {
    "empty_guest_seats": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "total_guest_seats": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "filled_guest_seats": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "empty_guest_seats": 48,
      "total_guest_seats": 50,
      "filled_guest_seats": 2
    }
  ]
}
object GuestsGetGuestInformationResponse
{
  "type": "object",
  "contentMediaType": "application/json"
}
object Health
{
  "type": "object",
  "title": "Health",
  "example": {
    "status": "active",
    "fail_count": 0
  },
  "required": [
    "status",
    "fail_count"
  ],
  "properties": {
    "status": {
      "type": "string"
    },
    "fail_count": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "status": "active",
      "fail_count": 0
    }
  ]
}
object Interval
{
  "type": "object",
  "title": "Interval",
  "example": {
    "id": "318X",
    "end": null,
    "time": "1000000",
    "start": null,
    "source": "chrome",
    "date_added": "1569983937761"
  },
  "required": [
    "id",
    "start",
    "end",
    "time",
    "source",
    "date_added"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "end": {
      "type": [
        "string",
        "null"
      ]
    },
    "time": {
      "type": "string"
    },
    "start": {
      "type": [
        "string",
        "null"
      ]
    },
    "source": {
      "type": "string"
    },
    "date_added": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "318X",
      "end": null,
      "time": "1000000",
      "start": null,
      "source": "chrome",
      "date_added": "1569983937761"
    }
  ]
}
object InviteGuestToWorkspacerequest
{
  "type": "object",
  "title": "InviteGuestToWorkspacerequest",
  "example": {
    "email": "guest@example.com",
    "can_edit_tags": true,
    "custom_role_id": 12345,
    "can_create_views": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "email",
    "can_edit_tags",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_create_views",
    "custom_role_id"
  ],
  "properties": {
    "email": {
      "type": "string"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "custom_role_id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "can_create_views": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "email": "guest@example.com",
      "can_edit_tags": true,
      "custom_role_id": 12345,
      "can_create_views": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object InviteGuestToWorkspaceresponse
{
  "type": "object",
  "title": "InviteGuestToWorkspaceresponse",
  "example": {
    "team": {
      "id": "333X",
      "name": "Team Name",
      "color": "#8D00D4",
      "roles": [
        {
          "id": 1,
          "name": "owner",
          "custom": false
        },
        {
          "id": 2,
          "name": "admin",
          "custom": false
        },
        {
          "id": 3,
          "name": "member",
          "custom": false
        },
        {
          "id": 4,
          "name": "guest",
          "custom": false
        },
        {
          "id": 998877,
          "name": "member custom",
          "custom": true,
          "inherited_role": 3
        },
        {
          "id": 112233,
          "name": "admin custom",
          "custom": true,
          "inherited_role": 2
        },
        {
          "id": 12345,
          "name": "guest custom",
          "custom": true,
          "inherited_role": 4
        }
      ],
      "avatar": null,
      "members": [
        {
          "user": {
            "id": 184,
            "role": 4,
            "color": null,
            "email": "guest@example.com",
            "initials": "G",
            "username": null,
            "custom_role": {
              "id": 12345,
              "name": "guest custom"
            },
            "date_joined": null,
            "last_active": null,
            "date_invited": "1583358383412",
            "profilePicture": null
          },
          "invited_by": {
            "id": 183,
            "color": "#827718",
            "email": "jerry@example.com",
            "initials": "J",
            "username": "Jerry",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
          },
          "can_edit_tags": true,
          "can_create_views": true,
          "can_see_time_spent": true,
          "can_see_time_estimated": true
        }
      ]
    }
  },
  "required": [
    "team"
  ],
  "properties": {
    "team": {
      "$ref": "#/components/schemas/Team1"
    }
  },
  "x-examples": [
    {
      "team": {
        "id": "333X",
        "name": "Team Name",
        "color": "#8D00D4",
        "roles": [
          {
            "id": 1,
            "name": "owner",
            "custom": false
          },
          {
            "id": 2,
            "name": "admin",
            "custom": false
          },
          {
            "id": 3,
            "name": "member",
            "custom": false
          },
          {
            "id": 4,
            "name": "guest",
            "custom": false
          },
          {
            "id": 998877,
            "name": "member custom",
            "custom": true,
            "inherited_role": 3
          },
          {
            "id": 112233,
            "name": "admin custom",
            "custom": true,
            "inherited_role": 2
          },
          {
            "id": 12345,
            "name": "guest custom",
            "custom": true,
            "inherited_role": 4
          }
        ],
        "avatar": null,
        "members": [
          {
            "user": {
              "id": 184,
              "role": 4,
              "color": null,
              "email": "guest@example.com",
              "initials": "G",
              "username": null,
              "custom_role": {
                "id": 12345,
                "name": "guest custom"
              },
              "date_joined": null,
              "last_active": null,
              "date_invited": "1583358383412",
              "profilePicture": null
            },
            "invited_by": {
              "id": 183,
              "color": "#827718",
              "email": "jerry@example.com",
              "initials": "J",
              "username": "Jerry",
              "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
            },
            "can_edit_tags": true,
            "can_create_views": true,
            "can_see_time_spent": true,
            "can_see_time_estimated": true
          }
        ]
      }
    }
  ]
}
object InviteUserToWorkspacerequest
{
  "type": "object",
  "title": "InviteUserToWorkspacerequest",
  "example": {
    "admin": true,
    "email": "user@example.com",
    "custom_role_id": 112233
  },
  "required": [
    "email",
    "admin"
  ],
  "properties": {
    "admin": {
      "type": "boolean"
    },
    "email": {
      "type": "string"
    },
    "custom_role_id": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "admin": true,
      "email": "user@example.com",
      "custom_role_id": 112233
    }
  ]
}
object InviteUserToWorkspaceresponse
{
  "type": "object",
  "title": "InviteUserToWorkspaceresponse",
  "example": {
    "team": {
      "id": "333X",
      "name": "Team Name",
      "color": "#8D00D4",
      "roles": [
        {
          "id": 1,
          "name": "owner",
          "custom": false
        },
        {
          "id": 2,
          "name": "admin",
          "custom": false
        },
        {
          "id": 3,
          "name": "member",
          "custom": false
        },
        {
          "id": 4,
          "name": "guest",
          "custom": false
        },
        {
          "id": 998877,
          "name": "member custom",
          "custom": true,
          "inherited_role": 3
        },
        {
          "id": 112233,
          "name": "admin custom",
          "custom": true,
          "inherited_role": 2
        },
        {
          "id": 12345,
          "name": "guest custom",
          "custom": true,
          "inherited_role": 4
        }
      ],
      "avatar": null,
      "members": [
        {
          "user": {
            "id": 184,
            "role": 2,
            "color": null,
            "email": "user@example.com",
            "initials": "G",
            "username": null,
            "custom_role": {
              "id": 112233,
              "name": "admin custom"
            },
            "date_joined": null,
            "last_active": null,
            "date_invited": "1583358383412",
            "profilePicture": null
          },
          "invited_by": {
            "id": 183,
            "color": "#827718",
            "email": "jerry@example.com",
            "initials": "J",
            "username": "Jerry",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
          }
        }
      ]
    }
  },
  "required": [
    "team"
  ],
  "properties": {
    "team": {
      "$ref": "#/components/schemas/Team3"
    }
  },
  "x-examples": [
    {
      "team": {
        "id": "333X",
        "name": "Team Name",
        "color": "#8D00D4",
        "roles": [
          {
            "id": 1,
            "name": "owner",
            "custom": false
          },
          {
            "id": 2,
            "name": "admin",
            "custom": false
          },
          {
            "id": 3,
            "name": "member",
            "custom": false
          },
          {
            "id": 4,
            "name": "guest",
            "custom": false
          },
          {
            "id": 998877,
            "name": "member custom",
            "custom": true,
            "inherited_role": 3
          },
          {
            "id": 112233,
            "name": "admin custom",
            "custom": true,
            "inherited_role": 2
          },
          {
            "id": 12345,
            "name": "guest custom",
            "custom": true,
            "inherited_role": 4
          }
        ],
        "avatar": null,
        "members": [
          {
            "user": {
              "id": 184,
              "role": 2,
              "color": null,
              "email": "user@example.com",
              "initials": "G",
              "username": null,
              "custom_role": {
                "id": 112233,
                "name": "admin custom"
              },
              "date_joined": null,
              "last_active": null,
              "date_invited": "1583358383412",
              "profilePicture": null
            },
            "invited_by": {
              "id": 183,
              "color": "#827718",
              "email": "jerry@example.com",
              "initials": "J",
              "username": "Jerry",
              "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
            }
          }
        ]
      }
    }
  ]
}
object InvitedBy
{
  "type": "object",
  "title": "InvitedBy",
  "example": {
    "id": 183,
    "color": "#827718",
    "email": "jerry@example.com",
    "initials": "J",
    "username": "Jerry",
    "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
  },
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    }
  ]
}
object Item
{
  "type": "object",
  "title": "Item",
  "example": {
    "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
    "name": "Checklist Item",
    "parent": null,
    "assignee": {
      "id": 183,
      "color": "#827718",
      "email": "example@email.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
    },
    "children": [],
    "resolved": false,
    "orderindex": 0,
    "date_created": "1567711566859"
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "assignee",
    "resolved",
    "parent",
    "date_created",
    "children"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "assignee": {
      "$ref": "#/components/schemas/Assignee"
    },
    "children": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "resolved": {
      "type": "boolean"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
      "name": "Checklist Item",
      "parent": null,
      "assignee": {
        "id": 183,
        "color": "#827718",
        "email": "example@email.com",
        "initials": "JD",
        "username": "John Doe",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
      },
      "children": [],
      "resolved": false,
      "orderindex": 0,
      "date_created": "1567711566859"
    }
  ]
}
object Item1
{
  "type": "object",
  "title": "Item1",
  "example": {
    "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
    "name": "Updated Checklist Item",
    "parent": null,
    "assignee": null,
    "children": [],
    "resolved": true,
    "orderindex": 0,
    "date_created": "1567711566859"
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "assignee",
    "resolved",
    "parent",
    "date_created",
    "children"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "children": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "resolved": {
      "type": "boolean"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "21e08dc8-e491-47f5-9fd8-d1dc4cedcc6fX",
      "name": "Updated Checklist Item",
      "parent": null,
      "assignee": null,
      "children": [],
      "resolved": true,
      "orderindex": 0,
      "date_created": "1567711566859"
    }
  ]
}
object KeyResult
{
  "type": "object",
  "title": "KeyResult",
  "example": {
    "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
    "name": "New Key Result Name",
    "type": "number",
    "unit": "km",
    "owners": [
      {
        "id": 183,
        "color": "#827718",
        "email": "example@email.com",
        "initials": "JK",
        "username": "John Doe",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
      }
    ],
    "creator": 183,
    "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
    "task_ids": [],
    "completed": false,
    "last_action": {
      "id": "d3183d0f-5cbd-4158-b015-71465f1df269X",
      "note": "Created Key Result",
      "userid": 183,
      "steps_taken": null,
      "steps_before": null,
      "date_modified": "1568062902048",
      "key_result_id": "947d46ed-8480-49bc-8c57-e569747efe93",
      "steps_current": null
    },
    "date_created": "1568062902048",
    "goal_pretty_id": "6",
    "subcategory_ids": [],
    "percent_completed": null
  },
  "required": [
    "id",
    "goal_id",
    "name",
    "type",
    "unit",
    "creator",
    "date_created",
    "goal_pretty_id",
    "percent_completed",
    "completed",
    "task_ids",
    "subcategory_ids",
    "owners",
    "last_action"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "unit": {
      "type": "string"
    },
    "owners": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Owner"
      },
      "description": ""
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "goal_id": {
      "type": "string"
    },
    "task_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "completed": {
      "type": "boolean"
    },
    "last_action": {
      "$ref": "#/components/schemas/LastAction"
    },
    "date_created": {
      "type": "string"
    },
    "goal_pretty_id": {
      "type": "string"
    },
    "subcategory_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "percent_completed": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
      "name": "New Key Result Name",
      "type": "number",
      "unit": "km",
      "owners": [
        {
          "id": 183,
          "color": "#827718",
          "email": "example@email.com",
          "initials": "JK",
          "username": "John Doe",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
        }
      ],
      "creator": 183,
      "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
      "task_ids": [],
      "completed": false,
      "last_action": {
        "id": "d3183d0f-5cbd-4158-b015-71465f1df269X",
        "note": "Created Key Result",
        "userid": 183,
        "steps_taken": null,
        "steps_before": null,
        "date_modified": "1568062902048",
        "key_result_id": "947d46ed-8480-49bc-8c57-e569747efe93",
        "steps_current": null
      },
      "date_created": "1568062902048",
      "goal_pretty_id": "6",
      "subcategory_ids": [],
      "percent_completed": null
    }
  ]
}
object KeyResult1
{
  "type": "object",
  "title": "KeyResult1",
  "example": {
    "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
    "name": "New Key Result Name",
    "type": "number",
    "unit": "km",
    "owners": [
      {
        "id": 183,
        "color": "#827718",
        "email": "example@email.com",
        "initials": "JK",
        "username": "John Doe",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
      }
    ],
    "creator": 183,
    "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
    "task_ids": [],
    "completed": false,
    "last_action": {
      "id": "e889858b-a023-46cc-968a-cac32fd04c1eX",
      "note": "Target achieved",
      "userid": 183,
      "steps_taken": null,
      "steps_before": null,
      "date_modified": "1568122776851",
      "key_result_id": "19c7a55e-537e-4bc9-b741-08df05a5bda8",
      "steps_current": null,
      "steps_taken_float": 5,
      "steps_before_float": 0,
      "steps_current_float": null
    },
    "date_created": "1568062902048",
    "goal_pretty_id": "6",
    "subcategory_ids": [],
    "percent_completed": null
  },
  "required": [
    "id",
    "goal_id",
    "name",
    "type",
    "unit",
    "creator",
    "date_created",
    "goal_pretty_id",
    "percent_completed",
    "completed",
    "task_ids",
    "subcategory_ids",
    "owners",
    "last_action"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "unit": {
      "type": "string"
    },
    "owners": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Owner"
      },
      "description": ""
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "goal_id": {
      "type": "string"
    },
    "task_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "completed": {
      "type": "boolean"
    },
    "last_action": {
      "$ref": "#/components/schemas/LastAction1"
    },
    "date_created": {
      "type": "string"
    },
    "goal_pretty_id": {
      "type": "string"
    },
    "subcategory_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "percent_completed": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "947d46ed-8480-49bc-8c57-e569747efe93X",
      "name": "New Key Result Name",
      "type": "number",
      "unit": "km",
      "owners": [
        {
          "id": 183,
          "color": "#827718",
          "email": "example@email.com",
          "initials": "JK",
          "username": "John Doe",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/183_nx1.jpg"
        }
      ],
      "creator": 183,
      "goal_id": "e53a033c-900e-462d-a849-4a216b06d930",
      "task_ids": [],
      "completed": false,
      "last_action": {
        "id": "e889858b-a023-46cc-968a-cac32fd04c1eX",
        "note": "Target achieved",
        "userid": 183,
        "steps_taken": null,
        "steps_before": null,
        "date_modified": "1568122776851",
        "key_result_id": "19c7a55e-537e-4bc9-b741-08df05a5bda8",
        "steps_current": null,
        "steps_taken_float": 5,
        "steps_before_float": 0,
        "steps_current_float": null
      },
      "date_created": "1568062902048",
      "goal_pretty_id": "6",
      "subcategory_ids": [],
      "percent_completed": null
    }
  ]
}
object LastAction
{
  "type": "object",
  "title": "LastAction",
  "example": {
    "id": "d3183d0f-5cbd-4158-b015-71465f1df269X",
    "note": "Created Key Result",
    "userid": 183,
    "steps_taken": null,
    "steps_before": null,
    "date_modified": "1568062902048",
    "key_result_id": "947d46ed-8480-49bc-8c57-e569747efe93",
    "steps_current": null
  },
  "required": [
    "id",
    "key_result_id",
    "userid",
    "date_modified",
    "steps_taken",
    "note",
    "steps_before",
    "steps_current"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "note": {
      "type": "string"
    },
    "userid": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "steps_taken": {
      "type": [
        "string",
        "null"
      ]
    },
    "steps_before": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_modified": {
      "type": "string"
    },
    "key_result_id": {
      "type": "string"
    },
    "steps_current": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "d3183d0f-5cbd-4158-b015-71465f1df269X",
      "note": "Created Key Result",
      "userid": 183,
      "steps_taken": null,
      "steps_before": null,
      "date_modified": "1568062902048",
      "key_result_id": "947d46ed-8480-49bc-8c57-e569747efe93",
      "steps_current": null
    }
  ]
}
object LastAction1
{
  "type": "object",
  "title": "LastAction1",
  "example": {
    "id": "e889858b-a023-46cc-968a-cac32fd04c1eX",
    "note": "Target achieved",
    "userid": 183,
    "steps_taken": null,
    "steps_before": null,
    "date_modified": "1568122776851",
    "key_result_id": "19c7a55e-537e-4bc9-b741-08df05a5bda8",
    "steps_current": null,
    "steps_taken_float": 5,
    "steps_before_float": 0,
    "steps_current_float": null
  },
  "required": [
    "id",
    "key_result_id",
    "userid",
    "date_modified",
    "steps_taken",
    "note",
    "steps_before",
    "steps_current",
    "steps_before_float",
    "steps_taken_float",
    "steps_current_float"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "note": {
      "type": "string"
    },
    "userid": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "steps_taken": {
      "type": [
        "string",
        "null"
      ]
    },
    "steps_before": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_modified": {
      "type": "string"
    },
    "key_result_id": {
      "type": "string"
    },
    "steps_current": {
      "type": [
        "string",
        "null"
      ]
    },
    "steps_taken_float": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "steps_before_float": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "steps_current_float": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "e889858b-a023-46cc-968a-cac32fd04c1eX",
      "note": "Target achieved",
      "userid": 183,
      "steps_taken": null,
      "steps_before": null,
      "date_modified": "1568122776851",
      "key_result_id": "19c7a55e-537e-4bc9-b741-08df05a5bda8",
      "steps_current": null,
      "steps_taken_float": 5,
      "steps_before_float": 0,
      "steps_current_float": null
    }
  ]
}
object LinkedTask
{
  "type": "object",
  "title": "LinkedTask",
  "example": {
    "userid": "183",
    "link_id": "9hz",
    "task_id": "9hv",
    "date_created": "1587571108988"
  },
  "required": [
    "task_id",
    "link_id",
    "date_created",
    "userid"
  ],
  "properties": {
    "userid": {
      "type": "string"
    },
    "link_id": {
      "type": "string"
    },
    "task_id": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "userid": "183",
      "link_id": "9hz",
      "task_id": "9hv",
      "date_created": "1587571108988"
    }
  ]
}
object List
{
  "type": "object",
  "title": "List",
  "example": {
    "id": "123X"
  },
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "123X"
    }
  ]
}
object List2
{
  "type": "object",
  "title": "List2",
  "example": {
    "id": "1752X",
    "name": "Shared with me",
    "access": false
  },
  "required": [
    "id",
    "name",
    "access"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "access": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "1752X",
      "name": "Shared with me",
      "access": false
    }
  ]
}
object List3
{
  "type": "object",
  "title": "List3",
  "example": {
    "id": "1427X",
    "name": "List Name",
    "status": null,
    "archived": false,
    "assignee": null,
    "due_date": null,
    "priority": null,
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "Open",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "Closed",
        "orderindex": 5
      }
    ],
    "orderindex": 1,
    "start_date": null,
    "task_count": "5",
    "permission_level": "read",
    "override_statuses": true
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "status",
    "priority",
    "assignee",
    "task_count",
    "due_date",
    "start_date",
    "archived",
    "override_statuses",
    "statuses",
    "permission_level"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "type": [
        "string",
        "null"
      ]
    },
    "archived": {
      "type": "boolean"
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "task_count": {
      "type": "string"
    },
    "permission_level": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "1427X",
      "name": "List Name",
      "status": null,
      "archived": false,
      "assignee": null,
      "due_date": null,
      "priority": null,
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "Open",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "Closed",
          "orderindex": 5
        }
      ],
      "orderindex": 1,
      "start_date": null,
      "task_count": "5",
      "permission_level": "read",
      "override_statuses": true
    }
  ]
}
object List4
{
  "type": "object",
  "title": "List4",
  "example": {
    "id": "124X",
    "name": "Updated List Name",
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "folder": {
      "id": "456X",
      "name": "Folder Name",
      "access": true,
      "hidden": false
    },
    "status": {
      "color": "#e50000",
      "status": "red",
      "hide_label": true
    },
    "content": "Updated List Content",
    "archived": false,
    "assignee": null,
    "due_date": "1567780450202",
    "priority": {
      "color": "#f50000",
      "priority": "high"
    },
    "orderindex": 1,
    "start_date": null,
    "task_count": null,
    "permission_level": "create",
    "override_statuses": false
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "content",
    "status",
    "priority",
    "assignee",
    "task_count",
    "due_date",
    "start_date",
    "folder",
    "space",
    "archived",
    "override_statuses",
    "permission_level"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder3"
    },
    "status": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/Status11"
        },
        {
          "type": [
            "string",
            "null"
          ]
        },
        {}
      ],
      "example": {
        "color": "#e50000",
        "status": "red",
        "hide_label": true
      },
      "x-examples": [
        {
          "color": "#e50000",
          "status": "red",
          "hide_label": true
        }
      ]
    },
    "content": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/Priority4"
        },
        {
          "type": [
            "string",
            "null"
          ]
        },
        {}
      ],
      "example": {
        "color": "#f50000",
        "priority": "high"
      },
      "x-examples": [
        {
          "color": "#f50000",
          "priority": "high"
        }
      ]
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "task_count": {
      "type": [
        "string",
        "null"
      ]
    },
    "permission_level": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "124X",
      "name": "Updated List Name",
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "folder": {
        "id": "456X",
        "name": "Folder Name",
        "access": true,
        "hidden": false
      },
      "status": {
        "color": "#e50000",
        "status": "red",
        "hide_label": true
      },
      "content": "Updated List Content",
      "archived": false,
      "assignee": null,
      "due_date": "1567780450202",
      "priority": {
        "color": "#f50000",
        "priority": "high"
      },
      "orderindex": 1,
      "start_date": null,
      "task_count": null,
      "permission_level": "create",
      "override_statuses": false
    }
  ]
}
object List6
{
  "type": "object",
  "title": "List6",
  "example": {
    "id": "1421X",
    "name": "Shared List",
    "status": null,
    "content": null,
    "archived": false,
    "assignee": null,
    "due_date": null,
    "priority": null,
    "orderindex": 0,
    "start_date": null,
    "task_count": "0"
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "content",
    "status",
    "priority",
    "assignee",
    "task_count",
    "due_date",
    "start_date",
    "archived"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "type": [
        "string",
        "null"
      ]
    },
    "content": {
      "type": [
        "string",
        "null"
      ]
    },
    "archived": {
      "type": "boolean"
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "task_count": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "1421X",
      "name": "Shared List",
      "status": null,
      "content": null,
      "archived": false,
      "assignee": null,
      "due_date": null,
      "priority": null,
      "orderindex": 0,
      "start_date": null,
      "task_count": "0"
    }
  ]
}
object ListsAddTaskToListResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object ListsRemoveListResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object ListsRemoveTaskFromListResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object Member
{
  "type": "object",
  "title": "Member",
  "example": {
    "user": {
      "id": 123,
      "color": "#000000",
      "username": "John Doe",
      "profilePicture": "https://clickup.com/avatar.jpg"
    }
  },
  "required": [
    "user"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 123,
        "color": "#000000",
        "username": "John Doe",
        "profilePicture": "https://clickup.com/avatar.jpg"
      }
    }
  ]
}
object Member1
{
  "type": "object",
  "title": "Member1",
  "example": {
    "id": 182,
    "color": "#827718",
    "email": "janedoe@gmail.com",
    "initials": "JD",
    "username": "Jane Doe",
    "isCreator": true,
    "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
    "permission_level": "edit"
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "permission_level",
    "profilePicture",
    "initials",
    "isCreator"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "isCreator": {
      "type": "boolean"
    },
    "profilePicture": {
      "type": "string"
    },
    "permission_level": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 182,
      "color": "#827718",
      "email": "janedoe@gmail.com",
      "initials": "JD",
      "username": "Jane Doe",
      "isCreator": true,
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
      "permission_level": "edit"
    }
  ]
}
object Member2
{
  "type": "object",
  "title": "Member2",
  "example": {
    "id": 182,
    "color": "#827718",
    "email": "janedoe@gmail.com",
    "added_by": 183,
    "initials": "JD",
    "username": "Jane Doe",
    "date_added": 1631599941928,
    "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
    "permission_level": "read"
  },
  "required": [
    "id",
    "email",
    "username",
    "color",
    "permission_level",
    "date_added",
    "added_by",
    "initials",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "added_by": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "date_added": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "profilePicture": {
      "type": "string"
    },
    "permission_level": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 182,
      "color": "#827718",
      "email": "janedoe@gmail.com",
      "added_by": 183,
      "initials": "JD",
      "username": "Jane Doe",
      "date_added": 1631599941928,
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/profile.jpg",
      "permission_level": "read"
    }
  ]
}
object Member4
{
  "type": "object",
  "title": "Member4",
  "example": {
    "user": {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "custom_role": {
        "id": 12345,
        "name": "guest custom"
      },
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "can_edit_tags": true,
    "can_create_views": true,
    "can_see_time_spent": true,
    "can_see_time_estimated": true
  },
  "required": [
    "user",
    "invited_by",
    "can_see_time_spent",
    "can_see_time_estimated",
    "can_edit_tags",
    "can_create_views"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User5"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    },
    "can_edit_tags": {
      "type": "boolean"
    },
    "can_create_views": {
      "type": "boolean"
    },
    "can_see_time_spent": {
      "type": "boolean"
    },
    "can_see_time_estimated": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "custom_role": {
          "id": 12345,
          "name": "guest custom"
        },
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_create_views": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  ]
}
object Member5
{
  "type": "object",
  "title": "Member5",
  "example": {
    "id": 812,
    "color": "#FFFFFF",
    "email": "john@example.com",
    "initials": "JD",
    "username": "John Doe",
    "profileInfo": {
      "top_tier_user": null,
      "display_profile": null,
      "verified_ambassador": null,
      "verified_consultant": null,
      "viewed_top_tier_user": null,
      "viewed_verified_ambassador": null,
      "viewed_verified_consultant": null
    },
    "profilePicture": "https://attachments-public.clickup.com/profilePictures/812_nx1.jpg"
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "initials",
    "profilePicture",
    "profileInfo"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": [
        "string",
        "null"
      ]
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profileInfo": {
      "$ref": "#/components/schemas/ProfileInfo"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 812,
      "color": "#FFFFFF",
      "email": "john@example.com",
      "initials": "JD",
      "username": "John Doe",
      "profileInfo": {
        "top_tier_user": null,
        "display_profile": null,
        "verified_ambassador": null,
        "verified_consultant": null,
        "viewed_top_tier_user": null,
        "viewed_verified_ambassador": null,
        "viewed_verified_consultant": null
      },
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/812_nx1.jpg"
    }
  ]
}
object Member7
{
  "type": "object",
  "title": "Member7",
  "example": {
    "user": {
      "id": 184,
      "role": 3,
      "color": null,
      "email": "user@example.com",
      "initials": "UN",
      "username": "User Name",
      "custom_role": {
        "id": 998877,
        "name": "member custom"
      },
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "shared": {
      "lists": [],
      "tasks": [],
      "folders": []
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    }
  },
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User21"
    },
    "shared": {
      "$ref": "#/components/schemas/Shared"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 3,
        "color": null,
        "email": "user@example.com",
        "initials": "UN",
        "username": "User Name",
        "custom_role": {
          "id": 998877,
          "name": "member custom"
        },
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      }
    }
  ]
}
object Members
{
  "type": "object",
  "title": "Members",
  "example": {
    "empty_member_seats": 0,
    "total_member_seats": 9,
    "filled_members_seats": 9
  },
  "required": [
    "filled_members_seats",
    "total_member_seats",
    "empty_member_seats"
  ],
  "properties": {
    "empty_member_seats": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "total_member_seats": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "filled_members_seats": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "empty_member_seats": 0,
      "total_member_seats": 9,
      "filled_members_seats": 9
    }
  ]
}
object Members1
{
  "type": "object",
  "title": "Members1",
  "example": {
    "id": 185,
    "color": "#4169E1",
    "email": "sam@example.com",
    "initials": "S",
    "username": "Sam",
    "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "initials",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 185,
      "color": "#4169E1",
      "email": "sam@example.com",
      "initials": "S",
      "username": "Sam",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    }
  ]
}
object Members2
{
  "type": "object",
  "title": "Members2",
  "example": {
    "add": [
      123456,
      987654
    ],
    "rem": [
      159753
    ]
  },
  "required": [
    "add",
    "rem"
  ],
  "properties": {
    "add": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    },
    "rem": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "add": [
        123456,
        987654
      ],
      "rem": [
        159753
      ]
    }
  ]
}
object Members3
{
  "type": "object",
  "title": "Members3",
  "example": {
    "id": 201,
    "color": "#40BC86",
    "email": "jim@example.com",
    "initials": "JH",
    "username": "Jim Halpert",
    "profilePicture": null
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "initials",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": 201,
      "color": "#40BC86",
      "email": "jim@example.com",
      "initials": "JH",
      "username": "Jim Halpert",
      "profilePicture": null
    }
  ]
}
object Members5
{
  "type": "object",
  "title": "Members5",
  "example": {
    "user": {
      "id": 184,
      "role": 2,
      "color": null,
      "email": "user@example.com",
      "initials": "G",
      "username": null,
      "custom_role": {
        "id": 112233,
        "name": "admin custom"
      },
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    },
    "invited_by": {
      "id": 183,
      "color": "#827718",
      "email": "jerry@example.com",
      "initials": "J",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    }
  },
  "required": [
    "user",
    "invited_by"
  ],
  "properties": {
    "user": {
      "$ref": "#/components/schemas/User5"
    },
    "invited_by": {
      "$ref": "#/components/schemas/InvitedBy"
    }
  },
  "x-examples": [
    {
      "user": {
        "id": 184,
        "role": 2,
        "color": null,
        "email": "user@example.com",
        "initials": "G",
        "username": null,
        "custom_role": {
          "id": 112233,
          "name": "admin custom"
        },
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      }
    }
  ]
}
object Milestones
{
  "type": "object",
  "title": "Milestones",
  "example": {
    "enabled": false
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": false
    }
  ]
}
object MultipleAssignees
{
  "type": "object",
  "title": "MultipleAssignees",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object Option
{
  "type": "object",
  "title": "Option",
  "example": {
    "id": "fb332c98-d7bc-4ee8-a3bd-b5ffaff98c3c",
    "color": null,
    "label": "one"
  },
  "required": [
    "id",
    "color"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "color": {
      "type": [
        "string",
        "null"
      ]
    },
    "label": {
      "type": "string"
    },
    "value": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": "fb332c98-d7bc-4ee8-a3bd-b5ffaff98c3c",
      "color": null,
      "label": "one"
    }
  ]
}
object Owner
{
  "type": "object",
  "title": "Owner",
  "example": {
    "id": 183,
    "color": "#827718",
    "email": "johndoe@gmail.com",
    "initials": "JD",
    "username": "John Doe",
    "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
  },
  "required": [
    "id",
    "username",
    "initials",
    "email",
    "color",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#827718",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    }
  ]
}
object Parent
{
  "type": "object",
  "title": "Parent",
  "example": {
    "id": "512X",
    "type": 7
  },
  "required": [
    "id",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The id of the Workspace, Space, Folder, or List where the view is located."
    },
    "type": {
      "type": "integer",
      "description": "The level of the Hierarchy where the view is created. \\\n \\\nOptions include: \\\n \\\nWorkspace (Everything Level): `7` \\\n \\\nSpace: `4` \\\n \\\nFolder: `5` \\\n \\\nList: `6`",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": "512X",
      "type": 7
    }
  ],
  "description": "The parent parameter specifies where the view is located in the ClickUp Hierarchy. Both `id` and `type` are required. \\\n \\\nThe `id` is the id of the Workspace, Space, Folder, or List where the view is located. \\\n \\\nThe `type` value indciates the level of the Hierarchy where the view is located."
}
object Points
{
  "type": "object",
  "title": "Points",
  "example": {
    "enabled": false
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": false
    }
  ]
}
object Portfolios
{
  "type": "object",
  "title": "Portfolios",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object Priority
{
  "type": "object",
  "title": "Priority",
  "example": {
    "id": "1X",
    "color": "#f50000",
    "priority": "urgent",
    "orderindex": "1"
  },
  "required": [
    "id",
    "priority",
    "color",
    "orderindex"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    },
    "orderindex": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "1X",
      "color": "#f50000",
      "priority": "urgent",
      "orderindex": "1"
    }
  ]
}
object Priority1
{
  "type": "object",
  "title": "Priority1",
  "example": {
    "color": "#f50000",
    "priority": "urgent"
  },
  "required": [
    "priority",
    "color"
  ],
  "properties": {
    "color": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "color": "#f50000",
      "priority": "urgent"
    }
  ]
}
object Priority4
{
  "type": "object",
  "title": "Priority4",
  "example": {
    "color": "#f50000",
    "priority": "high"
  },
  "properties": {
    "color": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "color": "#f50000",
      "priority": "high"
    }
  ]
}
object ProfileInfo
{
  "type": "object",
  "title": "ProfileInfo",
  "example": {
    "top_tier_user": null,
    "display_profile": null,
    "verified_ambassador": null,
    "verified_consultant": null,
    "viewed_top_tier_user": null,
    "viewed_verified_ambassador": null,
    "viewed_verified_consultant": null
  },
  "required": [
    "display_profile",
    "verified_ambassador",
    "verified_consultant",
    "top_tier_user",
    "viewed_verified_ambassador",
    "viewed_verified_consultant",
    "viewed_top_tier_user"
  ],
  "properties": {
    "top_tier_user": {
      "type": [
        "string",
        "null"
      ]
    },
    "display_profile": {
      "type": [
        "string",
        "null"
      ]
    },
    "verified_ambassador": {
      "type": [
        "string",
        "null"
      ]
    },
    "verified_consultant": {
      "type": [
        "string",
        "null"
      ]
    },
    "viewed_top_tier_user": {
      "type": [
        "string",
        "null"
      ]
    },
    "viewed_verified_ambassador": {
      "type": [
        "string",
        "null"
      ]
    },
    "viewed_verified_consultant": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "top_tier_user": null,
      "display_profile": null,
      "verified_ambassador": null,
      "verified_consultant": null,
      "viewed_top_tier_user": null,
      "viewed_verified_ambassador": null,
      "viewed_verified_consultant": null
    }
  ]
}
object Project
{
  "type": "object",
  "title": "Project",
  "example": {
    "id": "1X",
    "name": "Folder",
    "access": true,
    "hidden": false
  },
  "required": [
    "id",
    "name",
    "hidden",
    "access"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "access": {
      "type": "boolean"
    },
    "hidden": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "1X",
      "name": "Folder",
      "access": true,
      "hidden": false
    }
  ]
}
object RemapDependencies
{
  "type": "object",
  "title": "RemapDependencies",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object RemoveGuestFromFolderresponse
{
  "type": "object",
  "title": "RemoveGuestFromFolderresponse",
  "example": {
    "guest": {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  },
  "required": [
    "guest"
  ],
  "properties": {
    "guest": {
      "$ref": "#/components/schemas/Guest2"
    }
  },
  "x-examples": [
    {
      "guest": {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  ]
}
object RemoveGuestFromListresponse
{
  "type": "object",
  "title": "RemoveGuestFromListresponse",
  "example": {
    "guest": {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  },
  "required": [
    "guest"
  ],
  "properties": {
    "guest": {
      "$ref": "#/components/schemas/Guest2"
    }
  },
  "x-examples": [
    {
      "guest": {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  ]
}
object RemoveGuestFromTaskresponse
{
  "type": "object",
  "title": "RemoveGuestFromTaskresponse",
  "example": {
    "guest": {
      "user": {
        "id": 184,
        "role": 4,
        "color": null,
        "email": "guest@example.com",
        "initials": "G",
        "username": null,
        "date_joined": null,
        "last_active": null,
        "date_invited": "1583358383412",
        "profilePicture": null
      },
      "shared": {
        "lists": [],
        "tasks": [],
        "folders": []
      },
      "invited_by": {
        "id": 183,
        "color": "#827718",
        "email": "jerry@example.com",
        "initials": "J",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "can_edit_tags": true,
      "can_see_time_spent": true,
      "can_see_time_estimated": true
    }
  },
  "required": [
    "guest"
  ],
  "properties": {
    "guest": {
      "$ref": "#/components/schemas/Guest2"
    }
  },
  "x-examples": [
    {
      "guest": {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "shared": {
          "lists": [],
          "tasks": [],
          "folders": []
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    }
  ]
}
object RemoveGuestFromWorkspaceresponse
{
  "type": "object",
  "title": "RemoveGuestFromWorkspaceresponse",
  "example": {
    "team": {
      "id": "333X",
      "name": "Team Name",
      "color": "#8D00D4",
      "avatar": null,
      "members": []
    }
  },
  "required": [
    "team"
  ],
  "properties": {
    "team": {
      "$ref": "#/components/schemas/Team2"
    }
  },
  "x-examples": [
    {
      "team": {
        "id": "333X",
        "name": "Team Name",
        "color": "#8D00D4",
        "avatar": null,
        "members": []
      }
    }
  ]
}
object RemoveUserFromWorkspaceresponse
{
  "type": "object",
  "title": "RemoveUserFromWorkspaceresponse",
  "example": {
    "team": {
      "id": "333X",
      "name": "Team Name",
      "color": "#8D00D4",
      "avatar": null,
      "members": []
    }
  },
  "required": [
    "team"
  ],
  "properties": {
    "team": {
      "$ref": "#/components/schemas/Team2"
    }
  },
  "x-examples": [
    {
      "team": {
        "id": "333X",
        "name": "Team Name",
        "color": "#8D00D4",
        "avatar": null,
        "members": []
      }
    }
  ]
}
object Removetagsfromtimeentriesrequest
{
  "type": "object",
  "title": "Removetagsfromtimeentriesrequest",
  "example": {
    "tags": [
      {
        "name": "name of tag"
      }
    ],
    "time_entry_ids": [
      "timer_id"
    ]
  },
  "required": [
    "time_entry_ids",
    "tags"
  ],
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags10"
      },
      "description": ""
    },
    "time_entry_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "tags": [
        {
          "name": "name of tag"
        }
      ],
      "time_entry_ids": [
        "timer_id"
      ]
    }
  ]
}
object Role
{
  "type": "object",
  "title": "Role",
  "example": {
    "id": 1,
    "name": "owner",
    "custom": false
  },
  "required": [
    "id",
    "name",
    "custom"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "name": {
      "type": "string"
    },
    "custom": {
      "type": "boolean"
    },
    "inherited_role": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": 1,
      "name": "owner",
      "custom": false
    }
  ]
}
object SetCustomFieldValuerequest
{
  "anyOf": [
    {
      "type": "object",
      "title": "URL Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "example": "https://clickup.com/api"
        }
      },
      "description": "The `value` must be a string with a valid URL."
    },
    {
      "type": "object",
      "title": "Dropdown Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "example": "uuid1234"
        }
      },
      "description": "Enter the universal unique identifier (UUID) of the dropdown menu option you want to set. You can find the UUIDs available for each Dropdown Custom Field using [Get Accessible Custom Fields.](https://clickup.com/api)"
    },
    {
      "type": "object",
      "title": "Email Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "example": "user@company.com"
        }
      },
      "description": "The `value` must be a string with a valid email address."
    },
    {
      "type": "object",
      "title": "Phone Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "example": "+1 123 456 7890"
        }
      },
      "description": "The `value` must be a string with a valid country code."
    },
    {
      "type": "object",
      "title": "Date Custom Field",
      "properties": {
        "value": {
          "type": "integer",
          "format": "int32",
          "example": 1667367645000
        },
        "value_options": {
          "type": "object",
          "required": [
            "time"
          ],
          "properties": {
            "time": {
              "type": "boolean",
              "example": true
            }
          }
        }
      },
      "description": "The `value` must be Unix time in milliseconds. To display the time in a Date Custom Field in ClickUp, you must include `time: true` in the `value_options` property."
    },
    {
      "type": "object",
      "title": "Short or Long Text Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "example": "This is short or long text in a Custom Field."
        }
      },
      "description": "Enter a string of text."
    },
    {
      "type": "object",
      "title": "Number Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "number",
          "example": -28
        }
      },
      "description": "Enter a number."
    },
    {
      "type": "object",
      "title": "Money Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "number",
          "example": 8000
        }
      },
      "description": "You can set an amount, but not the currency of a Money Custom Field via the API. You can check the currency of a Money Custom Field using [Get Accessible Custom Fields.](https://clickup.com/api)"
    },
    {
      "type": "object",
      "title": "Task Relationship Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "object",
          "properties": {
            "add": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "rem": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      },
      "description": "Enter an array of task ids in the `add` property to add them to a Task Relationship Custom Field. Enter them into the `rem` property to remove tasks from the Relationship."
    },
    {
      "type": "object",
      "title": "People Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "object",
          "properties": {
            "add": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "rem": {
              "type": "array",
              "items": {
                "type": "number"
              }
            }
          }
        }
      },
      "description": "Enter an array of user ids or a Team id in the `add` property to add them to a People Custom Field. Enter them into the `rem` property to remove users from a People Custom Field. You can get a list of people in the Workspace using [Get Authorized Teams (Workspaces).](https://clickup.com/api)"
    },
    {
      "type": "object",
      "title": "Emoji (Rating) Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "integer",
          "format": "int32",
          "example": 4
        }
      },
      "description": "Enter an integer that is greater than or equal to zero and where the `count` property is greater than or equal to the `value`. You can find the `count` property for each Emoji (Rating) Custom Field using [Get Accessible Custom Fields.](https://clickup.com/api)"
    },
    {
      "type": "object",
      "title": "Manual Progress Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "object",
          "required": [
            "current"
          ],
          "properties": {
            "current": {
              "type": "number",
              "example": 20
            }
          }
        }
      },
      "description": "Enter a number between the `start` and `end` values of each Manual Progress Custom Field. For example, for a field with `start: 10` and `end: 30`, sending `current: 20` will be displayed as 50% complete in ClickUp. You can find the `start` and `end` values for each Manual Progress Custom Field using [Get Accessible Custom Fields.](https://clickup.com/api)"
    },
    {
      "type": "object",
      "title": "Label Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "array",
          "items": {
            "type": "string",
            "example": [
              "uuid1234",
              "uuid9876"
            ]
          }
        }
      },
      "description": "Enter an array of the universal unique identifiers (UUIDs) of the labels you want to apply. You can find the UUIDs available for each Label Custom Field using [Get Accessible Custom Fields.](https://clickup.com/api)"
    },
    {
      "type": "object",
      "title": "Location Custom Field",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "object",
          "properties": {
            "location": {
              "type": "object",
              "properties": {
                "lat": {
                  "type": "number"
                },
                "lng": {
                  "type": "number"
                }
              }
            },
            "formatted_address": {
              "type": "string"
            }
          }
        }
      },
      "description": "Include the latitude, longitude, and formatted address as defined in the [Google Maps Geocoding API.](https://developers.google.com/maps/documentation/geocoding/overview)"
    }
  ],
  "title": "SetCustomFieldValuerequest"
}
object Settings
{
  "type": "object",
  "title": "Settings",
  "example": {
    "me_comments": true,
    "me_subtasks": true,
    "show_images": true,
    "me_checklists": true,
    "show_subtasks": 3,
    "show_assignees": true,
    "show_task_locations": false,
    "show_closed_subtasks": false,
    "collapse_empty_columns": null,
    "show_subtask_parent_names": false
  },
  "required": [
    "show_task_locations",
    "show_subtasks",
    "show_subtask_parent_names",
    "show_closed_subtasks",
    "show_assignees",
    "show_images",
    "collapse_empty_columns",
    "me_comments",
    "me_subtasks",
    "me_checklists"
  ],
  "properties": {
    "me_comments": {
      "type": "boolean"
    },
    "me_subtasks": {
      "type": "boolean"
    },
    "show_images": {
      "type": "boolean"
    },
    "me_checklists": {
      "type": "boolean"
    },
    "show_subtasks": {
      "type": "integer",
      "description": "Acceptable values are `1`, `2`, or `3`, which show subtasks separate, expanded, or collapsed.",
      "contentEncoding": "int32"
    },
    "show_assignees": {
      "type": "boolean"
    },
    "show_task_locations": {
      "type": "boolean"
    },
    "show_closed_subtasks": {
      "type": "boolean"
    },
    "collapse_empty_columns": {
      "type": [
        "string",
        "null"
      ]
    },
    "show_subtask_parent_names": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "me_comments": true,
      "me_subtasks": true,
      "show_images": true,
      "me_checklists": true,
      "show_subtasks": 3,
      "show_assignees": true,
      "show_task_locations": false,
      "show_closed_subtasks": false,
      "collapse_empty_columns": null,
      "show_subtask_parent_names": false
    }
  ]
}
object Shared
{
  "type": "object",
  "title": "Shared",
  "example": {
    "lists": [],
    "tasks": [],
    "folders": []
  },
  "properties": {
    "lists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "folders": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "lists": [],
      "tasks": [],
      "folders": []
    }
  ]
}
object Shared1
{
  "type": "object",
  "title": "Shared1",
  "example": {
    "lists": [],
    "tasks": [
      {
        "id": "c04X",
        "url": "https://app.clickup.com/t/c04",
        "list": {
          "id": "1752X",
          "name": "Shared with me",
          "access": false
        },
        "name": "Task Name",
        "tags": [],
        "space": {
          "id": "380X"
        },
        "folder": {
          "id": "1217X",
          "name": "Shared with me",
          "access": false,
          "hidden": false
        },
        "parent": null,
        "points": null,
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "Open",
          "orderindex": 0
        },
        "creator": {
          "id": 183,
          "color": "#827718",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "team_id": "108",
        "archived": false,
        "due_date": "1508369194377",
        "priority": {
          "id": "1X",
          "color": "#f50000",
          "priority": "urgent",
          "orderindex": "1"
        },
        "assignees": [],
        "checklists": [],
        "orderindex": "0",
        "start_date": null,
        "date_closed": null,
        "date_created": "1574718405408",
        "date_updated": "1574722145869",
        "dependencies": [],
        "custom_fields": [],
        "time_estimate": null,
        "permission_level": "read"
      }
    ],
    "folders": []
  },
  "required": [
    "tasks",
    "lists",
    "folders"
  ],
  "properties": {
    "lists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "tasks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Task2"
      },
      "description": ""
    },
    "folders": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "lists": [],
      "tasks": [
        {
          "id": "c04X",
          "url": "https://app.clickup.com/t/c04",
          "list": {
            "id": "1752X",
            "name": "Shared with me",
            "access": false
          },
          "name": "Task Name",
          "tags": [],
          "space": {
            "id": "380X"
          },
          "folder": {
            "id": "1217X",
            "name": "Shared with me",
            "access": false,
            "hidden": false
          },
          "parent": null,
          "points": null,
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          "creator": {
            "id": 183,
            "color": "#827718",
            "username": "Jerry",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
          },
          "team_id": "108",
          "archived": false,
          "due_date": "1508369194377",
          "priority": {
            "id": "1X",
            "color": "#f50000",
            "priority": "urgent",
            "orderindex": "1"
          },
          "assignees": [],
          "checklists": [],
          "orderindex": "0",
          "start_date": null,
          "date_closed": null,
          "date_created": "1574718405408",
          "date_updated": "1574722145869",
          "dependencies": [],
          "custom_fields": [],
          "time_estimate": null,
          "permission_level": "read"
        }
      ],
      "folders": []
    }
  ]
}
object Shared3
{
  "type": "object",
  "title": "Shared3",
  "example": {
    "lists": [
      {
        "id": "1427X",
        "name": "List Name",
        "status": null,
        "archived": false,
        "assignee": null,
        "due_date": null,
        "priority": null,
        "statuses": [
          {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          {
            "type": "closed",
            "color": "#6bc950",
            "status": "Closed",
            "orderindex": 5
          }
        ],
        "orderindex": 1,
        "start_date": null,
        "task_count": "5",
        "permission_level": "read",
        "override_statuses": true
      }
    ],
    "tasks": [],
    "folders": []
  },
  "required": [
    "tasks",
    "lists",
    "folders"
  ],
  "properties": {
    "lists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/List3"
      },
      "description": ""
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "folders": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "lists": [
        {
          "id": "1427X",
          "name": "List Name",
          "status": null,
          "archived": false,
          "assignee": null,
          "due_date": null,
          "priority": null,
          "statuses": [
            {
              "type": "open",
              "color": "#d3d3d3",
              "status": "Open",
              "orderindex": 0
            },
            {
              "type": "closed",
              "color": "#6bc950",
              "status": "Closed",
              "orderindex": 5
            }
          ],
          "orderindex": 1,
          "start_date": null,
          "task_count": "5",
          "permission_level": "read",
          "override_statuses": true
        }
      ],
      "tasks": [],
      "folders": []
    }
  ]
}
object Shared5
{
  "type": "object",
  "title": "Shared5",
  "example": {
    "lists": [],
    "tasks": [],
    "folders": [
      {
        "id": "1057X",
        "name": "Folder Name",
        "lists": [],
        "hidden": false,
        "archived": false,
        "statuses": [
          {
            "type": "open",
            "color": "#d3d3d3",
            "status": "Open",
            "orderindex": 0
          },
          {
            "type": "closed",
            "color": "#6bc950",
            "status": "Closed",
            "orderindex": 5
          }
        ],
        "orderindex": 5,
        "task_count": "20",
        "permission_level": "read",
        "override_statuses": true
      }
    ]
  },
  "required": [
    "tasks",
    "lists",
    "folders"
  ],
  "properties": {
    "lists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "folders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Folder4"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "lists": [],
      "tasks": [],
      "folders": [
        {
          "id": "1057X",
          "name": "Folder Name",
          "lists": [],
          "hidden": false,
          "archived": false,
          "statuses": [
            {
              "type": "open",
              "color": "#d3d3d3",
              "status": "Open",
              "orderindex": 0
            },
            {
              "type": "closed",
              "color": "#6bc950",
              "status": "Closed",
              "orderindex": 5
            }
          ],
          "orderindex": 5,
          "task_count": "20",
          "permission_level": "read",
          "override_statuses": true
        }
      ]
    }
  ]
}
object Shared7
{
  "type": "object",
  "title": "Shared7",
  "example": {
    "lists": [
      {
        "id": "1421X",
        "name": "Shared List",
        "status": null,
        "content": null,
        "archived": false,
        "assignee": null,
        "due_date": null,
        "priority": null,
        "orderindex": 0,
        "start_date": null,
        "task_count": "0"
      }
    ],
    "tasks": [],
    "folders": [
      {
        "id": "1058X",
        "name": "Shared Folder",
        "content": null,
        "archived": false,
        "due_date": null,
        "orderindex": 0,
        "task_count": "0"
      }
    ]
  },
  "required": [
    "tasks",
    "lists",
    "folders"
  ],
  "properties": {
    "lists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/List6"
      },
      "description": ""
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "folders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Folder11"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "lists": [
        {
          "id": "1421X",
          "name": "Shared List",
          "status": null,
          "content": null,
          "archived": false,
          "assignee": null,
          "due_date": null,
          "priority": null,
          "orderindex": 0,
          "start_date": null,
          "task_count": "0"
        }
      ],
      "tasks": [],
      "folders": [
        {
          "id": "1058X",
          "name": "Shared Folder",
          "content": null,
          "archived": false,
          "due_date": null,
          "orderindex": 0,
          "task_count": "0"
        }
      ]
    }
  ]
}
object SharedHierarchyresponse
{
  "type": "object",
  "title": "SharedHierarchyresponse",
  "example": {
    "shared": {
      "lists": [
        {
          "id": "1421X",
          "name": "Shared List",
          "status": null,
          "content": null,
          "archived": false,
          "assignee": null,
          "due_date": null,
          "priority": null,
          "orderindex": 0,
          "start_date": null,
          "task_count": "0"
        }
      ],
      "tasks": [],
      "folders": [
        {
          "id": "1058X",
          "name": "Shared Folder",
          "content": null,
          "archived": false,
          "due_date": null,
          "orderindex": 0,
          "task_count": "0"
        }
      ]
    }
  },
  "required": [
    "shared"
  ],
  "properties": {
    "shared": {
      "$ref": "#/components/schemas/Shared7"
    }
  },
  "x-examples": [
    {
      "shared": {
        "lists": [
          {
            "id": "1421X",
            "name": "Shared List",
            "status": null,
            "content": null,
            "archived": false,
            "assignee": null,
            "due_date": null,
            "priority": null,
            "orderindex": 0,
            "start_date": null,
            "task_count": "0"
          }
        ],
        "tasks": [],
        "folders": [
          {
            "id": "1058X",
            "name": "Shared Folder",
            "content": null,
            "archived": false,
            "due_date": null,
            "orderindex": 0,
            "task_count": "0"
          }
        ]
      }
    }
  ]
}
object Sorting
{
  "type": "object",
  "title": "Sorting",
  "example": {
    "fields": [
      {
        "dir": -1,
        "idx": 0,
        "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
      }
    ]
  },
  "required": [
    "fields"
  ],
  "properties": {
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Include an array of fields to sort by.\\\n \\\n You can sort by the same fields available when [filtering a view](https://clickup.com/api)."
    }
  },
  "x-examples": [
    {
      "fields": [
        {
          "dir": -1,
          "idx": 0,
          "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
        }
      ]
    }
  ]
}
object Space
{
  "type": "object",
  "title": "Space",
  "example": {
    "id": "789X"
  },
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "789X"
    }
  ]
}
object Space13
{
  "type": "object",
  "title": "Space13",
  "example": {
    "id": "790X",
    "name": "Updated Space Name",
    "color": null,
    "avatar": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg",
    "members": [
      {
        "user": {
          "id": 12312312,
          "color": null,
          "initials": "JJ",
          "username": "John Jones",
          "profilePicture": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg"
        }
      }
    ],
    "private": false,
    "archived": false,
    "features": {
      "tags": {
        "enabled": false
      },
      "due_dates": {
        "enabled": false,
        "start_date": false,
        "remap_due_dates": false,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "portfolios": {
        "enabled": false
      },
      "custom_fields": {
        "enabled": true
      },
      "time_tracking": {
        "enabled": false
      },
      "time_estimates": {
        "enabled": false
      },
      "dependency_warning": {
        "enabled": false
      },
      "remap_dependencies": {
        "enabled": false
      }
    },
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "admin_can_manage": true,
    "multiple_assignees": false
  },
  "required": [
    "id",
    "name",
    "private",
    "statuses",
    "multiple_assignees",
    "features"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "avatar": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "user": {
        "id": {
          "type": "string"
        },
        "color": {
          "type": "string"
        },
        "initials": {
          "type": "string"
        },
        "username": {
          "type": "string"
        },
        "profilePicture": {
          "type": "string"
        }
      },
      "items": {
        "$ref": "#/components/schemas/Member"
      },
      "description": ""
    },
    "private": {
      "type": "boolean"
    },
    "archived": {
      "type": "boolean"
    },
    "features": {
      "$ref": "#/components/schemas/Features4"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "admin_can_manage": {
      "type": "boolean"
    },
    "multiple_assignees": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "790X",
      "name": "Updated Space Name",
      "color": null,
      "avatar": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg",
      "members": [
        {
          "user": {
            "id": 12312312,
            "color": null,
            "initials": "JJ",
            "username": "John Jones",
            "profilePicture": "https://attachments.clickup.com/profilePictures/12312312_HoB.jpg"
          }
        }
      ],
      "private": false,
      "archived": false,
      "features": {
        "tags": {
          "enabled": false
        },
        "due_dates": {
          "enabled": false,
          "start_date": false,
          "remap_due_dates": false,
          "remap_closed_due_date": false
        },
        "checklists": {
          "enabled": true
        },
        "portfolios": {
          "enabled": false
        },
        "custom_fields": {
          "enabled": true
        },
        "time_tracking": {
          "enabled": false
        },
        "time_estimates": {
          "enabled": false
        },
        "dependency_warning": {
          "enabled": false
        },
        "remap_dependencies": {
          "enabled": false
        }
      },
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "admin_can_manage": true,
      "multiple_assignees": false
    }
  ]
}
object Space2
{
  "type": "object",
  "title": "Space2",
  "example": {
    "id": "789X",
    "name": "Space Name",
    "access": true
  },
  "required": [
    "id",
    "name",
    "access"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "access": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "789X",
      "name": "Space Name",
      "access": true
    }
  ]
}
object SpacesRemoveSpaceResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object Sprints
{
  "type": "object",
  "title": "Sprints",
  "example": {
    "enabled": false
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": false
    }
  ]
}
object StartatimeEntryrequest
{
  "type": "object",
  "title": "StartatimeEntryrequest",
  "example": {
    "tid": "task_id",
    "tags": [
      {
        "name": "tag1"
      }
    ],
    "billable": false,
    "description": "from api"
  },
  "properties": {
    "tid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags10"
      },
      "description": "Users on the Business Plan and above can include a time tracking label."
    },
    "billable": {
      "type": "boolean"
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "tid": "task_id",
      "tags": [
        {
          "name": "tag1"
        }
      ],
      "billable": false,
      "description": "from api"
    }
  ]
}
object StartatimeEntryresponse
{
  "type": "object",
  "title": "StartatimeEntryresponse",
  "example": {
    "data": {
      "at": 1595289452790,
      "id": "timer_idX",
      "wid": "workspace_id",
      "tags": [],
      "task": {
        "id": "task_idX",
        "name": "test task",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        "custom_type": null
      },
      "user": {
        "id": 1,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1595289395842",
      "billable": false,
      "duration": -53,
      "description": ""
    }
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "$ref": "#/components/schemas/Data2"
    }
  },
  "x-examples": [
    {
      "data": {
        "at": 1595289452790,
        "id": "timer_idX",
        "wid": "workspace_id",
        "tags": [],
        "task": {
          "id": "task_idX",
          "name": "test task",
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "to do",
            "orderindex": 0
          },
          "custom_type": null
        },
        "user": {
          "id": 1,
          "color": "#08c7e0",
          "email": "test@gmail.com",
          "initials": "JK",
          "username": "first_name last_name",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
        },
        "start": "1595289395842",
        "billable": false,
        "duration": -53,
        "description": ""
      }
    }
  ]
}
object Status
{
  "type": "object",
  "title": "Status",
  "example": {
    "type": "custom",
    "color": "#d3d3d3",
    "status": "in progress",
    "orderindex": 1
  },
  "required": [
    "status",
    "color",
    "orderindex",
    "type"
  ],
  "properties": {
    "type": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "type": "custom",
      "color": "#d3d3d3",
      "status": "in progress",
      "orderindex": 1
    }
  ]
}
object Status11
{
  "type": "object",
  "title": "Status11",
  "example": {
    "color": "#e50000",
    "status": "red",
    "hide_label": true
  },
  "properties": {
    "color": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "hide_label": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "color": "#e50000",
      "status": "red",
      "hide_label": true
    }
  ]
}
object Status15
{
  "type": "object",
  "title": "Status15",
  "example": {
    "id": "p16911531_p8y2WNC6X",
    "type": "open",
    "color": "#d3d3d3",
    "status": "to do",
    "orderindex": 0
  },
  "required": [
    "id",
    "status",
    "type",
    "orderindex",
    "color"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "id": "p16911531_p8y2WNC6X",
      "type": "open",
      "color": "#d3d3d3",
      "status": "to do",
      "orderindex": 0
    }
  ]
}
object Status5
{
  "type": "object",
  "title": "Status5",
  "example": {
    "color": "#e50000",
    "status": "red",
    "hide_label": true
  },
  "required": [
    "status",
    "color",
    "hide_label"
  ],
  "properties": {
    "color": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "hide_label": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "color": "#e50000",
      "status": "red",
      "hide_label": true
    }
  ]
}
object StatusHistory
{
  "type": "object",
  "title": "StatusHistory",
  "example": {
    "type": "open",
    "color": "#d3d3d3",
    "status": "open",
    "orderindex": 0,
    "total_time": {
      "since": "1604004423494",
      "by_minute": 21707
    }
  },
  "required": [
    "status",
    "color",
    "type",
    "total_time",
    "orderindex"
  ],
  "properties": {
    "type": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "total_time": {
      "$ref": "#/components/schemas/TotalTime"
    }
  },
  "x-examples": [
    {
      "type": "open",
      "color": "#d3d3d3",
      "status": "open",
      "orderindex": 0,
      "total_time": {
        "since": "1604004423494",
        "by_minute": 21707
      }
    }
  ]
}
object StopatimeEntryresponse
{
  "type": "object",
  "title": "StopatimeEntryresponse",
  "example": {
    "data": {
      "at": 1595289452790,
      "id": "timer_idX",
      "end": 1595289452790,
      "wid": "workspace_id",
      "tags": [],
      "task": {
        "id": "task_idX",
        "name": "test task",
        "status": {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        "custom_type": null
      },
      "user": {
        "id": 1,
        "color": "#08c7e0",
        "email": "test@gmail.com",
        "initials": "JK",
        "username": "first_name last_name",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
      },
      "start": "1595289395842",
      "source": "clickup",
      "billable": false,
      "duration": 56948,
      "description": ""
    }
  },
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "$ref": "#/components/schemas/Data3"
    }
  },
  "x-examples": [
    {
      "data": {
        "at": 1595289452790,
        "id": "timer_idX",
        "end": 1595289452790,
        "wid": "workspace_id",
        "tags": [],
        "task": {
          "id": "task_idX",
          "name": "test task",
          "status": {
            "type": "open",
            "color": "#d3d3d3",
            "status": "to do",
            "orderindex": 0
          },
          "custom_type": null
        },
        "user": {
          "id": 1,
          "color": "#08c7e0",
          "email": "test@gmail.com",
          "initials": "JK",
          "username": "first_name last_name",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/1_HHk.jpg"
        },
        "start": "1595289395842",
        "source": "clickup",
        "billable": false,
        "duration": 56948,
        "description": ""
      }
    }
  ]
}
object Tag
{
  "type": "object",
  "title": "Tag",
  "example": {
    "name": "Tag Name",
    "tag_bg": "#000000",
    "tag_fg": "#000000"
  },
  "required": [
    "name",
    "tag_fg",
    "tag_bg"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "tag_bg": {
      "type": "string"
    },
    "tag_fg": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "Tag Name",
      "tag_bg": "#000000",
      "tag_fg": "#000000"
    }
  ]
}
object Tag1
{
  "type": "object",
  "title": "Tag1",
  "example": {
    "name": "Updated Tag",
    "bg_color": "#ffffff",
    "fg_color": "#ffffff"
  },
  "required": [
    "name",
    "fg_color",
    "bg_color"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "bg_color": {
      "type": "string"
    },
    "fg_color": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "Updated Tag",
      "bg_color": "#ffffff",
      "fg_color": "#ffffff"
    }
  ]
}
object Tags
{
  "type": "object",
  "title": "Tags",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object Tags10
{
  "type": "object",
  "title": "Tags10",
  "example": {
    "name": "name of tag"
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "name of tag"
    }
  ]
}
object Tags6
{
  "type": "object",
  "title": "Tags6",
  "example": {
    "name": "Tag name",
    "tag_bg": "#000000",
    "tag_fg": "#000000"
  },
  "required": [
    "name",
    "tag_fg",
    "tag_bg"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "tag_bg": {
      "type": "string"
    },
    "tag_fg": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "Tag name",
      "tag_bg": "#000000",
      "tag_fg": "#000000"
    }
  ]
}
object TagsAddToTaskResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TagsCreateSpaceTagResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TagsRemoveFromTaskResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TagsRemoveSpaceTagResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object Task
{
  "type": "object",
  "title": "Task",
  "example": {
    "id": "9hvX",
    "url": "https://app.clickup.com/t/9hx",
    "list": {
      "id": "123X"
    },
    "name": "Task Name",
    "tags": [],
    "space": {
      "id": "789X"
    },
    "folder": {
      "id": "456X"
    },
    "parent": null,
    "status": {
      "type": "custom",
      "color": "#d3d3d3",
      "status": "in progress",
      "orderindex": 1
    },
    "creator": {
      "id": 183,
      "color": "#827718",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "due_date": null,
    "priority": null,
    "assignees": [],
    "checklists": [],
    "orderindex": "1.00000000000000000000000000000000",
    "start_date": null,
    "time_spent": null,
    "date_closed": null,
    "date_created": "1567780450202",
    "date_updated": "1567780450202",
    "linked_tasks": [
      {
        "userid": "183",
        "link_id": "9hz",
        "task_id": "9hv",
        "date_created": "1587571108988"
      }
    ],
    "time_estimate": null
  },
  "required": [
    "id",
    "name",
    "status",
    "orderindex",
    "date_created",
    "date_updated",
    "date_closed",
    "creator",
    "assignees",
    "checklists",
    "tags",
    "parent",
    "priority",
    "due_date",
    "start_date",
    "time_estimate",
    "time_spent",
    "list",
    "folder",
    "space",
    "linked_tasks",
    "url"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator"
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "checklists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "time_spent": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_closed": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "linked_tasks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LinkedTask"
      },
      "description": ""
    },
    "time_estimate": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "9hvX",
      "url": "https://app.clickup.com/t/9hx",
      "list": {
        "id": "123X"
      },
      "name": "Task Name",
      "tags": [],
      "space": {
        "id": "789X"
      },
      "folder": {
        "id": "456X"
      },
      "parent": null,
      "status": {
        "type": "custom",
        "color": "#d3d3d3",
        "status": "in progress",
        "orderindex": 1
      },
      "creator": {
        "id": 183,
        "color": "#827718",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "due_date": null,
      "priority": null,
      "assignees": [],
      "checklists": [],
      "orderindex": "1.00000000000000000000000000000000",
      "start_date": null,
      "time_spent": null,
      "date_closed": null,
      "date_created": "1567780450202",
      "date_updated": "1567780450202",
      "linked_tasks": [
        {
          "userid": "183",
          "link_id": "9hz",
          "task_id": "9hv",
          "date_created": "1587571108988"
        }
      ],
      "time_estimate": null
    }
  ]
}
object Task1
{
  "type": "object",
  "title": "Task1",
  "example": {
    "id": "9hvX",
    "url": "https://app.clickup.com/t/9hx",
    "list": {
      "id": "123X"
    },
    "name": "Task Name",
    "tags": [],
    "space": {
      "id": "789X"
    },
    "folder": {
      "id": "456X"
    },
    "parent": null,
    "status": {
      "type": "custom",
      "color": "#d3d3d3",
      "status": "in progress",
      "orderindex": 1
    },
    "creator": {
      "id": 183,
      "color": "#827718",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "due_date": null,
    "priority": null,
    "assignees": [],
    "checklists": [],
    "orderindex": "1.00000000000000000000000000000000",
    "start_date": null,
    "time_spent": null,
    "date_closed": null,
    "date_created": "1567780450202",
    "date_updated": "1567780450202",
    "linked_tasks": [],
    "time_estimate": null
  },
  "required": [
    "id",
    "name",
    "status",
    "orderindex",
    "date_created",
    "date_updated",
    "date_closed",
    "creator",
    "assignees",
    "checklists",
    "tags",
    "parent",
    "priority",
    "due_date",
    "start_date",
    "time_estimate",
    "time_spent",
    "list",
    "folder",
    "space",
    "linked_tasks",
    "url"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator"
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "checklists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "time_spent": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_closed": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "linked_tasks": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "time_estimate": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "9hvX",
      "url": "https://app.clickup.com/t/9hx",
      "list": {
        "id": "123X"
      },
      "name": "Task Name",
      "tags": [],
      "space": {
        "id": "789X"
      },
      "folder": {
        "id": "456X"
      },
      "parent": null,
      "status": {
        "type": "custom",
        "color": "#d3d3d3",
        "status": "in progress",
        "orderindex": 1
      },
      "creator": {
        "id": 183,
        "color": "#827718",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "due_date": null,
      "priority": null,
      "assignees": [],
      "checklists": [],
      "orderindex": "1.00000000000000000000000000000000",
      "start_date": null,
      "time_spent": null,
      "date_closed": null,
      "date_created": "1567780450202",
      "date_updated": "1567780450202",
      "linked_tasks": [],
      "time_estimate": null
    }
  ]
}
object Task2
{
  "type": "object",
  "title": "Task2",
  "example": {
    "id": "c04X",
    "url": "https://app.clickup.com/t/c04",
    "list": {
      "id": "1752X",
      "name": "Shared with me",
      "access": false
    },
    "name": "Task Name",
    "tags": [],
    "space": {
      "id": "380X"
    },
    "folder": {
      "id": "1217X",
      "name": "Shared with me",
      "access": false,
      "hidden": false
    },
    "parent": null,
    "points": null,
    "status": {
      "type": "open",
      "color": "#d3d3d3",
      "status": "Open",
      "orderindex": 0
    },
    "creator": {
      "id": 183,
      "color": "#827718",
      "username": "Jerry",
      "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
    },
    "team_id": "108",
    "archived": false,
    "due_date": "1508369194377",
    "priority": {
      "id": "1X",
      "color": "#f50000",
      "priority": "urgent",
      "orderindex": "1"
    },
    "assignees": [],
    "checklists": [],
    "orderindex": "0",
    "start_date": null,
    "date_closed": null,
    "date_created": "1574718405408",
    "date_updated": "1574722145869",
    "dependencies": [],
    "custom_fields": [],
    "time_estimate": null,
    "permission_level": "read"
  },
  "required": [
    "id",
    "name",
    "status",
    "orderindex",
    "date_created",
    "date_updated",
    "date_closed",
    "archived",
    "creator",
    "assignees",
    "checklists",
    "tags",
    "parent",
    "priority",
    "due_date",
    "start_date",
    "points",
    "time_estimate",
    "custom_fields",
    "dependencies",
    "team_id",
    "url",
    "permission_level",
    "list",
    "folder",
    "space"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List2"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder3"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "points": {
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator"
    },
    "team_id": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "due_date": {
      "type": "string"
    },
    "priority": {
      "$ref": "#/components/schemas/Priority"
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "checklists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_closed": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "dependencies": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "custom_fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "time_estimate": {
      "type": [
        "string",
        "null"
      ]
    },
    "permission_level": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "c04X",
      "url": "https://app.clickup.com/t/c04",
      "list": {
        "id": "1752X",
        "name": "Shared with me",
        "access": false
      },
      "name": "Task Name",
      "tags": [],
      "space": {
        "id": "380X"
      },
      "folder": {
        "id": "1217X",
        "name": "Shared with me",
        "access": false,
        "hidden": false
      },
      "parent": null,
      "points": null,
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "Open",
        "orderindex": 0
      },
      "creator": {
        "id": 183,
        "color": "#827718",
        "username": "Jerry",
        "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
      },
      "team_id": "108",
      "archived": false,
      "due_date": "1508369194377",
      "priority": {
        "id": "1X",
        "color": "#f50000",
        "priority": "urgent",
        "orderindex": "1"
      },
      "assignees": [],
      "checklists": [],
      "orderindex": "0",
      "start_date": null,
      "date_closed": null,
      "date_created": "1574718405408",
      "date_updated": "1574722145869",
      "dependencies": [],
      "custom_fields": [],
      "time_estimate": null,
      "permission_level": "read"
    }
  ]
}
object Task3
{
  "type": "object",
  "title": "Task3",
  "example": {
    "id": "av1X",
    "url": "https://app.clickup.com/t/av1",
    "list": {
      "id": "1X",
      "name": "List",
      "access": true
    },
    "name": "My First Task",
    "tags": [
      {
        "name": "tagged",
        "tag_bg": "#000000",
        "tag_fg": "#000000"
      }
    ],
    "space": {
      "id": "1X"
    },
    "folder": {
      "id": "1X",
      "name": "Folder",
      "access": true,
      "hidden": false
    },
    "parent": "av2",
    "points": 1.3,
    "status": {
      "type": "open",
      "color": "#000000",
      "status": "Open",
      "orderindex": 1
    },
    "creator": {
      "id": 123,
      "color": "#000000",
      "email": "johndoe@website.com",
      "username": "John Doe",
      "profilePicture": "https://clickup.com/avatar.jpg"
    },
    "project": {
      "id": "1X",
      "name": "Folder",
      "access": true,
      "hidden": false
    },
    "team_id": "1234",
    "due_date": "1508369194377",
    "priority": 1,
    "watchers": [
      {
        "id": 123,
        "color": "#000000",
        "email": "johndoe@website.com",
        "username": "John Doe",
        "profilePicture": "https://clickup.com/avatar.jpg"
      }
    ],
    "assignees": [
      {
        "id": 123,
        "color": "#000000",
        "email": "johndoe@website.com",
        "username": "John Doe",
        "profilePicture": "https://clickup.com/avatar.jpg"
      }
    ],
    "custom_id": null,
    "checklists": [
      {
        "id": "d41340bc-2f17-43cc-ae71-86628f45825fX",
        "name": "Checklist",
        "items": [
          {
            "id": "9398cb3d-55a4-4c45-ab46-2a47a371e375X",
            "name": "checklist item 1",
            "parent": null,
            "assignee": null,
            "children": [],
            "resolved": false,
            "orderindex": 0,
            "date_created": "1618455810454"
          }
        ],
        "creator": 2770032,
        "task_id": "3cxv9f",
        "resolved": 0,
        "orderindex": 1,
        "unresolved": 1,
        "date_created": "1618455803730"
      }
    ],
    "orderindex": "1.0000",
    "start_date": "1508369194377",
    "date_closed": "1508369194377",
    "description": "Task description",
    "date_created": "1508369194377",
    "date_updated": "1508369194377",
    "dependencies": [],
    "linked_tasks": [],
    "text_content": "Task description",
    "custom_fields": [
      {
        "id": "be43f58e-989e-4233-9f25-27584f094b74X",
        "name": "Location type Custom Field",
        "type": "location",
        "required": false,
        "type_config": {},
        "date_created": "1617765143523",
        "hide_from_guests": false
      }
    ],
    "time_estimate": 1.2,
    "permission_level": "create",
    "markdown_description": "Task description"
  },
  "required": [
    "id",
    "custom_id",
    "name",
    "text_content",
    "description",
    "status",
    "orderindex",
    "date_created",
    "date_updated",
    "date_closed",
    "date_done",
    "creator",
    "assignees",
    "watchers",
    "checklists",
    "tags",
    "parent",
    "priority",
    "due_date",
    "start_date",
    "points",
    "time_estimate",
    "custom_fields",
    "dependencies",
    "linked_tasks",
    "team_id",
    "url",
    "permission_level",
    "list",
    "project",
    "folder",
    "space"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List2"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags6"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder3"
    },
    "parent": {
      "type": "string"
    },
    "points": {
      "type": "number"
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator5"
    },
    "project": {
      "$ref": "#/components/schemas/Project"
    },
    "team_id": {
      "type": "string"
    },
    "due_date": {
      "type": "string"
    },
    "priority": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "watchers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Watchers1"
      },
      "description": ""
    },
    "assignees": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Assignees1"
      },
      "description": ""
    },
    "custom_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_done": {
      "type": [
        "string",
        "null"
      ]
    },
    "checklists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Checklists6"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": "string"
    },
    "date_closed": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "dependencies": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "linked_tasks": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "text_content": {
      "type": "string"
    },
    "custom_fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomFields9"
      },
      "description": ""
    },
    "time_estimate": {
      "type": "number"
    },
    "permission_level": {
      "type": "string"
    },
    "markdown_description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "av1X",
      "url": "https://app.clickup.com/t/av1",
      "list": {
        "id": "1X",
        "name": "List",
        "access": true
      },
      "name": "My First Task",
      "tags": [
        {
          "name": "tagged",
          "tag_bg": "#000000",
          "tag_fg": "#000000"
        }
      ],
      "space": {
        "id": "1X"
      },
      "folder": {
        "id": "1X",
        "name": "Folder",
        "access": true,
        "hidden": false
      },
      "parent": "av2",
      "points": 1.3,
      "status": {
        "type": "open",
        "color": "#000000",
        "status": "Open",
        "orderindex": 1
      },
      "creator": {
        "id": 123,
        "color": "#000000",
        "email": "johndoe@website.com",
        "username": "John Doe",
        "profilePicture": "https://clickup.com/avatar.jpg"
      },
      "project": {
        "id": "1X",
        "name": "Folder",
        "access": true,
        "hidden": false
      },
      "team_id": "1234",
      "due_date": "1508369194377",
      "priority": 1,
      "watchers": [
        {
          "id": 123,
          "color": "#000000",
          "email": "johndoe@website.com",
          "username": "John Doe",
          "profilePicture": "https://clickup.com/avatar.jpg"
        }
      ],
      "assignees": [
        {
          "id": 123,
          "color": "#000000",
          "email": "johndoe@website.com",
          "username": "John Doe",
          "profilePicture": "https://clickup.com/avatar.jpg"
        }
      ],
      "custom_id": null,
      "checklists": [
        {
          "id": "d41340bc-2f17-43cc-ae71-86628f45825fX",
          "name": "Checklist",
          "items": [
            {
              "id": "9398cb3d-55a4-4c45-ab46-2a47a371e375X",
              "name": "checklist item 1",
              "parent": null,
              "assignee": null,
              "children": [],
              "resolved": false,
              "orderindex": 0,
              "date_created": "1618455810454"
            }
          ],
          "creator": 2770032,
          "task_id": "3cxv9f",
          "resolved": 0,
          "orderindex": 1,
          "unresolved": 1,
          "date_created": "1618455803730"
        }
      ],
      "orderindex": "1.0000",
      "start_date": "1508369194377",
      "date_closed": "1508369194377",
      "description": "Task description",
      "date_created": "1508369194377",
      "date_updated": "1508369194377",
      "dependencies": [],
      "linked_tasks": [],
      "text_content": "Task description",
      "custom_fields": [
        {
          "id": "be43f58e-989e-4233-9f25-27584f094b74X",
          "name": "Location type Custom Field",
          "type": "location",
          "required": false,
          "type_config": {},
          "date_created": "1617765143523",
          "hide_from_guests": false
        }
      ],
      "time_estimate": 1.2,
      "permission_level": "create",
      "markdown_description": "Task description"
    }
  ]
}
object Task4
{
  "type": "object",
  "title": "Task4",
  "example": {
    "id": "1vwwavvX",
    "name": "woof",
    "status": {
      "type": "open",
      "color": "#d3d3d3",
      "status": "open yes",
      "orderindex": 0
    },
    "custom_id": "JOSH-917",
    "custom_type": null
  },
  "required": [
    "id",
    "custom_id",
    "name",
    "status",
    "custom_type"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "custom_id": {
      "type": "string"
    },
    "custom_type": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "1vwwavvX",
      "name": "woof",
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "open yes",
        "orderindex": 0
      },
      "custom_id": "JOSH-917",
      "custom_type": null
    }
  ]
}
object Task5
{
  "type": "object",
  "title": "Task5",
  "example": {
    "id": "task_idX",
    "name": "task_name",
    "status": {
      "type": "open",
      "color": "#d3d3d3",
      "status": "to do",
      "orderindex": 0
    }
  },
  "required": [
    "id",
    "name",
    "status"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    }
  },
  "x-examples": [
    {
      "id": "task_idX",
      "name": "task_name",
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      }
    }
  ]
}
object Task6
{
  "type": "object",
  "title": "Task6",
  "example": {
    "id": "task_idX",
    "name": "test task",
    "status": {
      "type": "open",
      "color": "#d3d3d3",
      "status": "to do",
      "orderindex": 0
    },
    "custom_type": null
  },
  "required": [
    "id",
    "name",
    "status",
    "custom_type"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "custom_type": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "task_idX",
      "name": "test task",
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      "custom_type": null
    }
  ]
}
object Task9
{
  "type": "object",
  "title": "Task9",
  "example": {
    "id": "9hxX",
    "url": "https://app.clickup.com/t/9hx",
    "list": {
      "id": "123X"
    },
    "name": "New Task Name",
    "tags": [],
    "space": {
      "id": "789X"
    },
    "folder": {
      "id": "456X"
    },
    "parent": null,
    "status": {
      "type": "open",
      "color": "#d3d3d3",
      "status": "Open",
      "orderindex": 0
    },
    "creator": {
      "id": 183,
      "color": "#827718",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "due_date": null,
    "priority": null,
    "watchers": [],
    "assignees": [],
    "date_done": null,
    "checklists": [],
    "orderindex": "1.00000000000000000000000000000000",
    "start_date": null,
    "time_spent": null,
    "date_closed": null,
    "date_created": "1567780450202",
    "date_updated": "1567780450202",
    "time_estimate": null,
    "custom_item_id": null,
    "markdown_description": "Task description"
  },
  "required": [
    "id",
    "custom_item_id",
    "name",
    "status",
    "orderindex",
    "date_created",
    "date_updated",
    "date_closed",
    "date_done",
    "creator",
    "assignees",
    "watchers",
    "checklists",
    "tags",
    "parent",
    "priority",
    "due_date",
    "start_date",
    "time_estimate",
    "time_spent",
    "list",
    "folder",
    "space",
    "url"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder"
    },
    "parent": {
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator"
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "watchers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "date_done": {
      "type": [
        "string",
        "null"
      ]
    },
    "checklists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "time_spent": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_closed": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "time_estimate": {
      "type": [
        "string",
        "null"
      ]
    },
    "custom_item_id": {
      "type": [
        "number",
        "null"
      ]
    },
    "markdown_description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "9hxX",
      "url": "https://app.clickup.com/t/9hx",
      "list": {
        "id": "123X"
      },
      "name": "New Task Name",
      "tags": [],
      "space": {
        "id": "789X"
      },
      "folder": {
        "id": "456X"
      },
      "parent": null,
      "status": {
        "type": "open",
        "color": "#d3d3d3",
        "status": "Open",
        "orderindex": 0
      },
      "creator": {
        "id": 183,
        "color": "#827718",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "due_date": null,
      "priority": null,
      "watchers": [],
      "assignees": [],
      "date_done": null,
      "checklists": [],
      "orderindex": "1.00000000000000000000000000000000",
      "start_date": null,
      "time_spent": null,
      "date_closed": null,
      "date_created": "1567780450202",
      "date_updated": "1567780450202",
      "time_estimate": null,
      "custom_item_id": null,
      "markdown_description": "Task description"
    }
  ]
}
object TaskChecklistsRemoveChecklistItemResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TaskChecklistsRemoveChecklistResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TaskChecklistsUpdateChecklistResponse
{
  "type": "object",
  "contentMediaType": "application/json"
}
object TaskLocation
{
  "type": "object",
  "title": "TaskLocation",
  "example": {
    "list_id": 1560300071,
    "space_id": 22800253,
    "folder_id": 468300080,
    "list_name": "List",
    "space_name": "Space",
    "folder_name": "Folder"
  },
  "required": [
    "list_id",
    "folder_id",
    "space_id",
    "list_name",
    "folder_name",
    "space_name"
  ],
  "properties": {
    "list_id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "space_id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "folder_id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "list_name": {
      "type": "string"
    },
    "space_name": {
      "type": "string"
    },
    "folder_name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "list_id": 1560300071,
      "space_id": 22800253,
      "folder_id": 468300080,
      "list_name": "List",
      "space_name": "Space",
      "folder_name": "Folder"
    }
  ]
}
object TaskRelationshipsAddDependencyResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TaskRelationshipsRemoveDependencyResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TaskTag
{
  "type": "object",
  "title": "TaskTag",
  "example": {
    "name": "content-request",
    "tag_bg": "#2ecd6f",
    "tag_fg": "#800000",
    "creator": 301828
  },
  "required": [
    "name",
    "tag_fg",
    "tag_bg",
    "creator"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "tag_bg": {
      "type": "string"
    },
    "tag_fg": {
      "type": "string"
    },
    "creator": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "name": "content-request",
      "tag_bg": "#2ecd6f",
      "tag_fg": "#800000",
      "creator": 301828
    }
  ]
}
object TaskTemplatesCreateFromTemplateResponse
{
  "type": "object",
  "contentMediaType": "application/json"
}
object TasksRemoveTaskByIdResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object Team
{
  "type": "object",
  "title": "Team",
  "example": {
    "id": "1234X",
    "name": "My ClickUp Workspace",
    "color": "#000000",
    "avatar": "https://clickup.com/avatar.jpg",
    "members": [
      {
        "user": {
          "id": 123,
          "color": "#000000",
          "username": "John Doe",
          "profilePicture": "https://clickup.com/avatar.jpg"
        }
      }
    ]
  },
  "required": [
    "id",
    "name",
    "color",
    "avatar",
    "members"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "avatar": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Member"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "id": "1234X",
      "name": "My ClickUp Workspace",
      "color": "#000000",
      "avatar": "https://clickup.com/avatar.jpg",
      "members": [
        {
          "user": {
            "id": 123,
            "color": "#000000",
            "username": "John Doe",
            "profilePicture": "https://clickup.com/avatar.jpg"
          }
        }
      ]
    }
  ]
}
object Team1
{
  "type": "object",
  "title": "Team1",
  "example": {
    "id": "333X",
    "name": "Team Name",
    "color": "#8D00D4",
    "roles": [
      {
        "id": 1,
        "name": "owner",
        "custom": false
      },
      {
        "id": 2,
        "name": "admin",
        "custom": false
      },
      {
        "id": 3,
        "name": "member",
        "custom": false
      },
      {
        "id": 4,
        "name": "guest",
        "custom": false
      },
      {
        "id": 998877,
        "name": "member custom",
        "custom": true,
        "inherited_role": 3
      },
      {
        "id": 112233,
        "name": "admin custom",
        "custom": true,
        "inherited_role": 2
      },
      {
        "id": 12345,
        "name": "guest custom",
        "custom": true,
        "inherited_role": 4
      }
    ],
    "avatar": null,
    "members": [
      {
        "user": {
          "id": 184,
          "role": 4,
          "color": null,
          "email": "guest@example.com",
          "initials": "G",
          "username": null,
          "custom_role": {
            "id": 12345,
            "name": "guest custom"
          },
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        },
        "can_edit_tags": true,
        "can_create_views": true,
        "can_see_time_spent": true,
        "can_see_time_estimated": true
      }
    ]
  },
  "required": [
    "id",
    "name",
    "color",
    "avatar",
    "members",
    "roles"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "roles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Role"
      },
      "description": ""
    },
    "avatar": {
      "type": [
        "string",
        "null"
      ]
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Member4"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "id": "333X",
      "name": "Team Name",
      "color": "#8D00D4",
      "roles": [
        {
          "id": 1,
          "name": "owner",
          "custom": false
        },
        {
          "id": 2,
          "name": "admin",
          "custom": false
        },
        {
          "id": 3,
          "name": "member",
          "custom": false
        },
        {
          "id": 4,
          "name": "guest",
          "custom": false
        },
        {
          "id": 998877,
          "name": "member custom",
          "custom": true,
          "inherited_role": 3
        },
        {
          "id": 112233,
          "name": "admin custom",
          "custom": true,
          "inherited_role": 2
        },
        {
          "id": 12345,
          "name": "guest custom",
          "custom": true,
          "inherited_role": 4
        }
      ],
      "avatar": null,
      "members": [
        {
          "user": {
            "id": 184,
            "role": 4,
            "color": null,
            "email": "guest@example.com",
            "initials": "G",
            "username": null,
            "custom_role": {
              "id": 12345,
              "name": "guest custom"
            },
            "date_joined": null,
            "last_active": null,
            "date_invited": "1583358383412",
            "profilePicture": null
          },
          "invited_by": {
            "id": 183,
            "color": "#827718",
            "email": "jerry@example.com",
            "initials": "J",
            "username": "Jerry",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
          },
          "can_edit_tags": true,
          "can_create_views": true,
          "can_see_time_spent": true,
          "can_see_time_estimated": true
        }
      ]
    }
  ]
}
object Team2
{
  "type": "object",
  "title": "Team2",
  "example": {
    "id": "333X",
    "name": "Team Name",
    "color": "#8D00D4",
    "avatar": null,
    "members": []
  },
  "required": [
    "id",
    "name",
    "color",
    "avatar",
    "members"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "avatar": {
      "type": [
        "string",
        "null"
      ]
    },
    "members": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "id": "333X",
      "name": "Team Name",
      "color": "#8D00D4",
      "avatar": null,
      "members": []
    }
  ]
}
object Team3
{
  "type": "object",
  "title": "Team3",
  "example": {
    "id": "333X",
    "name": "Team Name",
    "color": "#8D00D4",
    "roles": [
      {
        "id": 1,
        "name": "owner",
        "custom": false
      },
      {
        "id": 2,
        "name": "admin",
        "custom": false
      },
      {
        "id": 3,
        "name": "member",
        "custom": false
      },
      {
        "id": 4,
        "name": "guest",
        "custom": false
      },
      {
        "id": 998877,
        "name": "member custom",
        "custom": true,
        "inherited_role": 3
      },
      {
        "id": 112233,
        "name": "admin custom",
        "custom": true,
        "inherited_role": 2
      },
      {
        "id": 12345,
        "name": "guest custom",
        "custom": true,
        "inherited_role": 4
      }
    ],
    "avatar": null,
    "members": [
      {
        "user": {
          "id": 184,
          "role": 2,
          "color": null,
          "email": "user@example.com",
          "initials": "G",
          "username": null,
          "custom_role": {
            "id": 112233,
            "name": "admin custom"
          },
          "date_joined": null,
          "last_active": null,
          "date_invited": "1583358383412",
          "profilePicture": null
        },
        "invited_by": {
          "id": 183,
          "color": "#827718",
          "email": "jerry@example.com",
          "initials": "J",
          "username": "Jerry",
          "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
        }
      }
    ]
  },
  "required": [
    "id",
    "name",
    "color",
    "avatar",
    "members",
    "roles"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "roles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Role"
      },
      "description": ""
    },
    "avatar": {
      "type": [
        "string",
        "null"
      ]
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Members5"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "id": "333X",
      "name": "Team Name",
      "color": "#8D00D4",
      "roles": [
        {
          "id": 1,
          "name": "owner",
          "custom": false
        },
        {
          "id": 2,
          "name": "admin",
          "custom": false
        },
        {
          "id": 3,
          "name": "member",
          "custom": false
        },
        {
          "id": 4,
          "name": "guest",
          "custom": false
        },
        {
          "id": 998877,
          "name": "member custom",
          "custom": true,
          "inherited_role": 3
        },
        {
          "id": 112233,
          "name": "admin custom",
          "custom": true,
          "inherited_role": 2
        },
        {
          "id": 12345,
          "name": "guest custom",
          "custom": true,
          "inherited_role": 4
        }
      ],
      "avatar": null,
      "members": [
        {
          "user": {
            "id": 184,
            "role": 2,
            "color": null,
            "email": "user@example.com",
            "initials": "G",
            "username": null,
            "custom_role": {
              "id": 112233,
              "name": "admin custom"
            },
            "date_joined": null,
            "last_active": null,
            "date_invited": "1583358383412",
            "profilePicture": null
          },
          "invited_by": {
            "id": 183,
            "color": "#827718",
            "email": "jerry@example.com",
            "initials": "J",
            "username": "Jerry",
            "profilePicture": "https://dev-attachments-public.clickup.com/profilePictures/profile.jpg"
          }
        }
      ]
    }
  ]
}
object TeamSidebar
{
  "type": "object",
  "title": "TeamSidebar",
  "example": {
    "assignees": [],
    "unassigned_tasks": false,
    "assigned_comments": false
  },
  "required": [
    "assignees",
    "assigned_comments",
    "unassigned_tasks"
  ],
  "properties": {
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "unassigned_tasks": {
      "type": "boolean"
    },
    "assigned_comments": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "assignees": [],
      "unassigned_tasks": false,
      "assigned_comments": false
    }
  ]
}
object TeamsUserGroupsRemoveGroupResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TimeEstimates
{
  "type": "object",
  "title": "TimeEstimates",
  "example": {
    "enabled": true
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": true
    }
  ]
}
object TimeTracking
{
  "type": "object",
  "title": "TimeTracking",
  "example": {
    "enabled": false
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": false
    }
  ]
}
object TimeTrackingAddTagsFromTimeEntriesResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TimeTrackingChangeTagNamesResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TimeTrackingGetTimeEntryHistoryResponse
{
  "type": "object",
  "contentMediaType": "application/json"
}
object TimeTrackingLegacyEditTimeTrackedResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TimeTrackingLegacyRemoveTrackedTimeResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TimeTrackingRemoveTagsFromTimeEntriesResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object TimeTrackingUpdateTimeEntryDetailsResponse
{
  "type": "object",
  "contentMediaType": "application/json"
}
object TotalTime
{
  "type": "object",
  "title": "TotalTime",
  "example": {
    "since": "1604004423494",
    "by_minute": 21708
  },
  "required": [
    "by_minute",
    "since"
  ],
  "properties": {
    "since": {
      "type": "string"
    },
    "by_minute": {
      "type": "integer",
      "contentEncoding": "int32"
    }
  },
  "x-examples": [
    {
      "since": "1604004423494",
      "by_minute": 21708
    }
  ]
}
object Tracking
{
  "type": "object",
  "title": "Tracking",
  "example": {
    "subtasks": true,
    "checklists": true,
    "assigned_comments": true
  },
  "required": [
    "subtasks",
    "checklists",
    "assigned_comments"
  ],
  "properties": {
    "subtasks": {
      "type": "boolean"
    },
    "checklists": {
      "type": "boolean"
    },
    "assigned_comments": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "subtasks": true,
      "checklists": true,
      "assigned_comments": true
    }
  ]
}
object Tracktimerequest
{
  "type": "object",
  "title": "Tracktimerequest",
  "example": {
    "end": 1508369194377,
    "time": 8640000,
    "start": 1567780450202
  },
  "required": [
    "start",
    "end",
    "time"
  ],
  "properties": {
    "end": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "time": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start": {
      "type": "integer",
      "contentEncoding": "int64"
    }
  },
  "x-examples": [
    {
      "end": 1508369194377,
      "time": 8640000,
      "start": 1567780450202
    }
  ]
}
object Tracktimeresponse
{
  "type": "object",
  "title": "Tracktimeresponse",
  "example": {
    "id": "123X"
  },
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "123X"
    }
  ]
}
object TypeConfig
{
  "type": "object",
  "title": "TypeConfig",
  "example": {},
  "properties": {
    "end": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "count": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "default": {
      "oneOf": [
        {
          "type": [
            "string",
            "null"
          ]
        },
        {
          "type": "integer",
          "contentEncoding": "int32"
        },
        {}
      ]
    },
    "options": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Option"
      },
      "description": ""
    },
    "tracking": {
      "$ref": "#/components/schemas/Tracking"
    },
    "precision": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "code_point": {
      "type": "string"
    },
    "complete_on": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "placeholder": {
      "type": [
        "string",
        "null"
      ]
    },
    "currency_type": {
      "type": "string"
    }
  },
  "x-examples": [
    {}
  ]
}
object TypeConfig1
{
  "type": "object",
  "title": "TypeConfig1",
  "example": {},
  "properties": {
    "single_user": {
      "type": "boolean"
    },
    "include_groups": {
      "type": "boolean"
    },
    "include_guests": {
      "type": "boolean"
    },
    "include_team_members": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {}
  ]
}
object UpdateCommentrequest
{
  "type": "object",
  "title": "UpdateCommentrequest",
  "example": {
    "assignee": 183,
    "resolved": true,
    "comment_text": "Updated comment content"
  },
  "required": [
    "comment_text",
    "assignee",
    "resolved"
  ],
  "properties": {
    "assignee": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "resolved": {
      "type": "boolean",
      "description": ""
    },
    "comment_text": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "assignee": 183,
      "resolved": true,
      "comment_text": "Updated comment content"
    }
  ]
}
object UpdateFolderrequest
{
  "type": "object",
  "title": "UpdateFolderrequest",
  "example": {
    "name": "Updated Folder Name"
  },
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "Updated Folder Name"
    }
  ]
}
object UpdateFolderresponse
{
  "type": "object",
  "title": "UpdateFolderresponse",
  "example": {
    "id": "457X",
    "name": "Updated Folder Name",
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "hidden": false,
    "orderindex": 0,
    "task_count": "0",
    "override_statuses": false
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "override_statuses",
    "hidden",
    "space",
    "task_count"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "hidden": {
      "type": "boolean"
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "task_count": {
      "type": "string"
    },
    "override_statuses": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "457X",
      "name": "Updated Folder Name",
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "hidden": false,
      "orderindex": 0,
      "task_count": "0",
      "override_statuses": false
    }
  ]
}
object UpdateGoalrequest
{
  "type": "object",
  "title": "UpdateGoalrequest",
  "example": {
    "name": "Updated Goal Name",
    "color": "#32a852",
    "due_date": 1568036964079,
    "add_owners": [
      184
    ],
    "rem_owners": [
      183
    ],
    "description": "Updated Goal Description"
  },
  "required": [
    "name",
    "due_date",
    "description",
    "rem_owners",
    "add_owners",
    "color"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "due_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "add_owners": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": "Array of user IDs."
    },
    "rem_owners": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": "Array of user IDs."
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "name": "Updated Goal Name",
      "color": "#32a852",
      "due_date": 1568036964079,
      "add_owners": [
        184
      ],
      "rem_owners": [
        183
      ],
      "description": "Updated Goal Description"
    }
  ]
}
object UpdateGoalresponse
{
  "type": "object",
  "title": "UpdateGoalresponse",
  "example": {
    "goal": {
      "id": "e53a033c-900e-462d-a849-4a216b06d930X",
      "name": "Updated Goal Name",
      "color": "#32a852",
      "owners": [
        {
          "id": 182,
          "color": "#827718",
          "email": "janedoe@gmail.com",
          "initials": "JD",
          "username": "Jane Doe",
          "profilePicture": "https://attachments-public.clickup.com/profilePictures/182_abc.jpg"
        }
      ],
      "creator": 183,
      "history": [],
      "members": [],
      "private": false,
      "team_id": "512",
      "archived": false,
      "due_date": "1568036964079",
      "folder_id": null,
      "pretty_id": "6",
      "pretty_url": "https://app.clickup.com/512/goals/6",
      "start_date": null,
      "description": "Updated Goal Description",
      "key_results": [],
      "date_created": "1568044355026",
      "multiple_owners": true,
      "percent_completed": 0
    }
  },
  "required": [
    "goal"
  ],
  "properties": {
    "goal": {
      "$ref": "#/components/schemas/Goal"
    }
  },
  "x-examples": [
    {
      "goal": {
        "id": "e53a033c-900e-462d-a849-4a216b06d930X",
        "name": "Updated Goal Name",
        "color": "#32a852",
        "owners": [
          {
            "id": 182,
            "color": "#827718",
            "email": "janedoe@gmail.com",
            "initials": "JD",
            "username": "Jane Doe",
            "profilePicture": "https://attachments-public.clickup.com/profilePictures/182_abc.jpg"
          }
        ],
        "creator": 183,
        "history": [],
        "members": [],
        "private": false,
        "team_id": "512",
        "archived": false,
        "due_date": "1568036964079",
        "folder_id": null,
        "pretty_id": "6",
        "pretty_url": "https://app.clickup.com/512/goals/6",
        "start_date": null,
        "description": "Updated Goal Description",
        "key_results": [],
        "date_created": "1568044355026",
        "multiple_owners": true,
        "percent_completed": 0
      }
    }
  ]
}
object UpdateListrequest
{
  "type": "object",
  "title": "UpdateListrequest",
  "example": {
    "name": "Updated List Name",
    "status": "red",
    "content": "Updated List Content",
    "assignee": "none",
    "due_date": 1567780450202,
    "priority": 2,
    "unset_status": true,
    "due_date_time": true
  },
  "required": [
    "name",
    "content",
    "due_date",
    "due_date_time",
    "priority",
    "assignee",
    "status",
    "unset_status"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "description": "**Status** refers to the List color rather than the task Statuses available in the List."
    },
    "content": {
      "type": "string"
    },
    "assignee": {
      "type": "string"
    },
    "due_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "priority": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "unset_status": {
      "type": "boolean",
      "description": "By default, this is `false.` To remove the List color use `unset_status: true`."
    },
    "due_date_time": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "Updated List Name",
      "status": "red",
      "content": "Updated List Content",
      "assignee": "none",
      "due_date": 1567780450202,
      "priority": 2,
      "unset_status": true,
      "due_date_time": true
    }
  ]
}
object UpdateListresponse
{
  "type": "object",
  "title": "UpdateListresponse",
  "example": {
    "id": "124X",
    "name": "Updated List Name",
    "space": {
      "id": "789X",
      "name": "Space Name",
      "access": true
    },
    "folder": {
      "id": "456X",
      "name": "Folder Name",
      "access": true,
      "hidden": false
    },
    "status": {
      "color": "#e50000",
      "status": "red",
      "hide_label": true
    },
    "content": "Updated List Content",
    "assignee": null,
    "due_date": "1567780450202",
    "priority": {
      "color": "#f50000",
      "priority": "high"
    },
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "orderindex": 1,
    "start_date": null,
    "task_count": null,
    "due_date_time": true,
    "inbound_address": "add.task.1389.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
    "start_date_time": null
  },
  "required": [
    "id",
    "name",
    "orderindex",
    "content",
    "status",
    "priority",
    "assignee",
    "task_count",
    "due_date",
    "due_date_time",
    "start_date",
    "start_date_time",
    "folder",
    "space",
    "statuses",
    "inbound_address"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "space": {
      "$ref": "#/components/schemas/Space2"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder3"
    },
    "status": {
      "$ref": "#/components/schemas/Status5"
    },
    "content": {
      "type": "string"
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date": {
      "type": "string"
    },
    "priority": {
      "$ref": "#/components/schemas/Priority1"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "orderindex": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "task_count": {
      "type": [
        "string",
        "null"
      ]
    },
    "due_date_time": {
      "type": "boolean"
    },
    "inbound_address": {
      "type": "string"
    },
    "start_date_time": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "124X",
      "name": "Updated List Name",
      "space": {
        "id": "789X",
        "name": "Space Name",
        "access": true
      },
      "folder": {
        "id": "456X",
        "name": "Folder Name",
        "access": true,
        "hidden": false
      },
      "status": {
        "color": "#e50000",
        "status": "red",
        "hide_label": true
      },
      "content": "Updated List Content",
      "assignee": null,
      "due_date": "1567780450202",
      "priority": {
        "color": "#f50000",
        "priority": "high"
      },
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "orderindex": 1,
      "start_date": null,
      "task_count": null,
      "due_date_time": true,
      "inbound_address": "add.task.1389.ac725f.31518a6a-05bb-4997-92a6-1dcfe2f527ca@tasks.clickup.com",
      "start_date_time": null
    }
  ]
}
object UpdateSpacerequest
{
  "type": "object",
  "title": "UpdateSpacerequest",
  "example": {
    "name": "Updated Space Name",
    "color": "#7B68EE",
    "private": false,
    "features": {
      "tags": {
        "enabled": false
      },
      "due_dates": {
        "enabled": false,
        "start_date": false,
        "remap_due_dates": false,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "portfolios": {
        "enabled": false
      },
      "custom_fields": {
        "enabled": true
      },
      "time_tracking": {
        "enabled": false
      },
      "time_estimates": {
        "enabled": false
      },
      "dependency_warning": {
        "enabled": false
      },
      "remap_dependencies": {
        "enabled": false
      }
    },
    "admin_can_manage": false,
    "multiple_assignees": false
  },
  "required": [
    "name",
    "color",
    "private",
    "admin_can_manage",
    "multiple_assignees",
    "features"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "private": {
      "type": "boolean"
    },
    "features": {
      "$ref": "#/components/schemas/Features"
    },
    "admin_can_manage": {
      "type": "boolean",
      "description": "***Note:** Allowing or restricting admins from managing private Spaces using `\"admin_can_manage\"` is an [Enterprise Plan](https://clickup.com/pricing) feature.*"
    },
    "multiple_assignees": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "Updated Space Name",
      "color": "#7B68EE",
      "private": false,
      "features": {
        "tags": {
          "enabled": false
        },
        "due_dates": {
          "enabled": false,
          "start_date": false,
          "remap_due_dates": false,
          "remap_closed_due_date": false
        },
        "checklists": {
          "enabled": true
        },
        "portfolios": {
          "enabled": false
        },
        "custom_fields": {
          "enabled": true
        },
        "time_tracking": {
          "enabled": false
        },
        "time_estimates": {
          "enabled": false
        },
        "dependency_warning": {
          "enabled": false
        },
        "remap_dependencies": {
          "enabled": false
        }
      },
      "admin_can_manage": false,
      "multiple_assignees": false
    }
  ]
}
object UpdateSpaceresponse
{
  "type": "object",
  "title": "UpdateSpaceresponse",
  "example": {
    "id": "790X",
    "name": "Updated Space Name",
    "private": false,
    "features": {
      "tags": {
        "enabled": false
      },
      "due_dates": {
        "enabled": false,
        "start_date": false,
        "remap_due_dates": false,
        "remap_closed_due_date": false
      },
      "checklists": {
        "enabled": true
      },
      "portfolios": {
        "enabled": false
      },
      "custom_fields": {
        "enabled": true
      },
      "time_tracking": {
        "enabled": false
      },
      "time_estimates": {
        "enabled": false
      },
      "dependency_warning": {
        "enabled": false
      },
      "remap_dependencies": {
        "enabled": false
      }
    },
    "statuses": [
      {
        "type": "open",
        "color": "#d3d3d3",
        "status": "to do",
        "orderindex": 0
      },
      {
        "type": "closed",
        "color": "#6bc950",
        "status": "complete",
        "orderindex": 1
      }
    ],
    "multiple_assignees": false
  },
  "required": [
    "id",
    "name",
    "private",
    "statuses",
    "multiple_assignees",
    "features"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "private": {
      "type": "boolean"
    },
    "features": {
      "$ref": "#/components/schemas/Features"
    },
    "statuses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Status"
      },
      "description": ""
    },
    "multiple_assignees": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "id": "790X",
      "name": "Updated Space Name",
      "private": false,
      "features": {
        "tags": {
          "enabled": false
        },
        "due_dates": {
          "enabled": false,
          "start_date": false,
          "remap_due_dates": false,
          "remap_closed_due_date": false
        },
        "checklists": {
          "enabled": true
        },
        "portfolios": {
          "enabled": false
        },
        "custom_fields": {
          "enabled": true
        },
        "time_tracking": {
          "enabled": false
        },
        "time_estimates": {
          "enabled": false
        },
        "dependency_warning": {
          "enabled": false
        },
        "remap_dependencies": {
          "enabled": false
        }
      },
      "statuses": [
        {
          "type": "open",
          "color": "#d3d3d3",
          "status": "to do",
          "orderindex": 0
        },
        {
          "type": "closed",
          "color": "#6bc950",
          "status": "complete",
          "orderindex": 1
        }
      ],
      "multiple_assignees": false
    }
  ]
}
object UpdateTaskrequest
{
  "type": "object",
  "title": "UpdateTaskrequest",
  "example": {
    "name": "Updated Task Name",
    "parent": "abc1234",
    "status": "in progress",
    "archived": false,
    "due_date": 1508369194377,
    "priority": 1,
    "watchers": {
      "add": [
        182
      ],
      "rem": [
        183
      ]
    },
    "assignees": {
      "add": [
        182
      ],
      "rem": [
        183
      ]
    },
    "start_date": 1567780450202,
    "description": "Updated Task Content",
    "due_date_time": false,
    "time_estimate": 8640000,
    "start_date_time": false
  },
  "properties": {
    "name": {
      "type": "string"
    },
    "parent": {
      "type": "string",
      "description": "You can move a subtask to another parent task by including `\"parent\"` with a valid `task id`.\\\n \\\nYou cannot convert a subtask to a task by setting `\"parent\"` to `null`."
    },
    "status": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "due_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "priority": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "watchers": {
      "$ref": "#/components/schemas/Watchers"
    },
    "assignees": {
      "$ref": "#/components/schemas/Assignees"
    },
    "start_date": {
      "type": "integer",
      "contentEncoding": "int64"
    },
    "description": {
      "type": "string",
      "description": "To clear the task description, include `Description` with `\" \"`."
    },
    "due_date_time": {
      "type": "boolean"
    },
    "time_estimate": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "custom_item_id": {
      "type": [
        "number",
        "null"
      ],
      "description": "To convert an item using a custom task type into a task, send `'null'`. \\\n \\\nTo update this task to be a Milestone, send a value of `1`. \\\n \\\nTo use a custom task type, send the custom task type ID as defined in your Workspace, such as `2`."
    },
    "start_date_time": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "name": "Updated Task Name",
      "parent": "abc1234",
      "status": "in progress",
      "archived": false,
      "due_date": 1508369194377,
      "priority": 1,
      "watchers": {
        "add": [
          182
        ],
        "rem": [
          183
        ]
      },
      "assignees": {
        "add": [
          182
        ],
        "rem": [
          183
        ]
      },
      "start_date": 1567780450202,
      "description": "Updated Task Content",
      "due_date_time": false,
      "time_estimate": 8640000,
      "start_date_time": false
    }
  ]
}
object UpdateTaskresponse
{
  "type": "object",
  "title": "UpdateTaskresponse",
  "example": {
    "id": "9hxX",
    "url": "https://app.clickup.com/t/9hx",
    "list": {
      "id": "123X"
    },
    "name": "Updated Task Name",
    "tags": [],
    "space": {
      "id": "789X"
    },
    "folder": {
      "id": "456X"
    },
    "parent": "abc1234",
    "status": {
      "type": "custom",
      "color": "#d3d3d3",
      "status": "in progress",
      "orderindex": 1
    },
    "creator": {
      "id": 183,
      "color": "#827718",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    },
    "archived": false,
    "due_date": null,
    "priority": null,
    "assignees": [],
    "custom_id": null,
    "checklists": [],
    "orderindex": "1.00000000000000000000000000000000",
    "start_date": null,
    "time_spent": null,
    "date_closed": null,
    "description": "Updated Task Content",
    "date_created": "1567780450202",
    "date_updated": "1567780450202",
    "text_content": "Updated Task Content",
    "custom_fields": [
      {
        "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
        "name": "My Number field",
        "type": "checkbox",
        "value": "23",
        "required": true,
        "type_config": {},
        "date_created": "1622176979540",
        "hide_from_guests": false
      },
      {
        "id": "03efda77-c7a0-42d3-8afd-fd546353c2f5X",
        "name": "My Text field",
        "type": "short_text",
        "value": "Text field input",
        "required": false,
        "type_config": {},
        "date_created": "1622176979540",
        "hide_from_guests": false
      },
      {
        "id": "f4d2a20d-6759-4420-b853-222dbe2589d5X",
        "name": "My People",
        "type": "users",
        "required": false,
        "type_config": {
          "single_user": true,
          "include_groups": true,
          "include_guests": true,
          "include_team_members": true
        },
        "date_created": "1618440378816",
        "hide_from_guests": false
      }
    ],
    "time_estimate": null
  },
  "properties": {
    "id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "list": {
      "$ref": "#/components/schemas/List"
    },
    "name": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "folder": {
      "$ref": "#/components/schemas/Folder"
    },
    "parent": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/Status"
    },
    "creator": {
      "$ref": "#/components/schemas/Creator"
    },
    "archived": {
      "type": "boolean"
    },
    "due_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "priority": {
      "type": [
        "string",
        "null"
      ]
    },
    "assignees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "custom_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "checklists": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "orderindex": {
      "type": "string"
    },
    "start_date": {
      "type": [
        "string",
        "null"
      ]
    },
    "time_spent": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_closed": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    },
    "date_updated": {
      "type": "string"
    },
    "text_content": {
      "type": "string"
    },
    "custom_fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomFields7"
      },
      "description": ""
    },
    "time_estimate": {
      "type": [
        "string",
        "null"
      ]
    },
    "custom_item_id": {
      "type": [
        "number",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "9hxX",
      "url": "https://app.clickup.com/t/9hx",
      "list": {
        "id": "123X"
      },
      "name": "Updated Task Name",
      "tags": [],
      "space": {
        "id": "789X"
      },
      "folder": {
        "id": "456X"
      },
      "parent": "abc1234",
      "status": {
        "type": "custom",
        "color": "#d3d3d3",
        "status": "in progress",
        "orderindex": 1
      },
      "creator": {
        "id": 183,
        "color": "#827718",
        "username": "John Doe",
        "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
      },
      "archived": false,
      "due_date": null,
      "priority": null,
      "assignees": [],
      "custom_id": null,
      "checklists": [],
      "orderindex": "1.00000000000000000000000000000000",
      "start_date": null,
      "time_spent": null,
      "date_closed": null,
      "description": "Updated Task Content",
      "date_created": "1567780450202",
      "date_updated": "1567780450202",
      "text_content": "Updated Task Content",
      "custom_fields": [
        {
          "id": "0a52c486-5f05-403b-b4fd-c512ff05131cX",
          "name": "My Number field",
          "type": "checkbox",
          "value": "23",
          "required": true,
          "type_config": {},
          "date_created": "1622176979540",
          "hide_from_guests": false
        },
        {
          "id": "03efda77-c7a0-42d3-8afd-fd546353c2f5X",
          "name": "My Text field",
          "type": "short_text",
          "value": "Text field input",
          "required": false,
          "type_config": {},
          "date_created": "1622176979540",
          "hide_from_guests": false
        },
        {
          "id": "f4d2a20d-6759-4420-b853-222dbe2589d5X",
          "name": "My People",
          "type": "users",
          "required": false,
          "type_config": {
            "single_user": true,
            "include_groups": true,
            "include_guests": true,
            "include_team_members": true
          },
          "date_created": "1618440378816",
          "hide_from_guests": false
        }
      ],
      "time_estimate": null
    }
  ]
}
object UpdateTeamrequest
{
  "type": "object",
  "title": "UpdateTeamrequest",
  "example": {
    "name": "New User Group Name",
    "handle": "newusergroupname",
    "members": {
      "add": [
        123456,
        987654
      ],
      "rem": [
        159753
      ]
    }
  },
  "properties": {
    "name": {
      "type": "string"
    },
    "handle": {
      "type": "string"
    },
    "members": {
      "$ref": "#/components/schemas/Members2"
    }
  },
  "x-examples": [
    {
      "name": "New User Group Name",
      "handle": "newusergroupname",
      "members": {
        "add": [
          123456,
          987654
        ],
        "rem": [
          159753
        ]
      }
    }
  ]
}
object UpdateTeamresponse
{
  "type": "object",
  "title": "UpdateTeamresponse",
  "example": {
    "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
    "name": "New User Group Name",
    "avatar": {
      "icon": null,
      "color": null,
      "source": null,
      "attachment_id": null
    },
    "handle": "newusergroupname",
    "userid": 301828,
    "members": [
      {
        "id": 201,
        "color": "#40BC86",
        "email": "jim@example.com",
        "initials": "JH",
        "username": "Jim Halpert",
        "profilePicture": null
      },
      {
        "id": 202,
        "color": "#FF8600",
        "email": "dwight@example.com",
        "initials": "DS",
        "username": "Dwight Shrute",
        "profilePicture": null
      }
    ],
    "team_id": "123456",
    "initials": "NN",
    "date_created": "1640122639829"
  },
  "required": [
    "id",
    "team_id",
    "userid",
    "name",
    "handle",
    "date_created",
    "initials",
    "members",
    "avatar"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "avatar": {
      "$ref": "#/components/schemas/Avatar"
    },
    "handle": {
      "type": "string"
    },
    "userid": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Members3"
      },
      "description": ""
    },
    "team_id": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "date_created": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": "4bfdfcec-6f4f-40a7-b0d6-22660d51870dX",
      "name": "New User Group Name",
      "avatar": {
        "icon": null,
        "color": null,
        "source": null,
        "attachment_id": null
      },
      "handle": "newusergroupname",
      "userid": 301828,
      "members": [
        {
          "id": 201,
          "color": "#40BC86",
          "email": "jim@example.com",
          "initials": "JH",
          "username": "Jim Halpert",
          "profilePicture": null
        },
        {
          "id": 202,
          "color": "#FF8600",
          "email": "dwight@example.com",
          "initials": "DS",
          "username": "Dwight Shrute",
          "profilePicture": null
        }
      ],
      "team_id": "123456",
      "initials": "NN",
      "date_created": "1640122639829"
    }
  ]
}
object UpdateViewrequest
{
  "type": "object",
  "title": "UpdateViewrequest",
  "example": {
    "name": "New View Name",
    "type": "list",
    "divide": {
      "dir": null,
      "field": null,
      "collapsed": []
    },
    "parent": {
      "id": "512X",
      "type": 7
    },
    "columns": {
      "fields": []
    },
    "filters": {
      "op": "AND",
      "fields": [],
      "search": "",
      "show_closed": false
    },
    "sorting": {
      "fields": []
    },
    "grouping": {
      "dir": 1,
      "field": "status",
      "ignore": false,
      "collapsed": []
    },
    "settings": {
      "me_comments": true,
      "me_subtasks": true,
      "show_images": true,
      "me_checklists": true,
      "show_subtasks": 3,
      "show_assignees": true,
      "show_task_locations": false,
      "show_closed_subtasks": false,
      "collapse_empty_columns": null,
      "show_subtask_parent_names": false
    },
    "team_sidebar": {
      "assignees": [],
      "unassigned_tasks": false,
      "assigned_comments": false
    }
  },
  "required": [
    "name",
    "type",
    "parent",
    "grouping",
    "divide",
    "sorting",
    "filters",
    "columns",
    "team_sidebar",
    "settings"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "divide": {
      "$ref": "#/components/schemas/Divide"
    },
    "parent": {
      "$ref": "#/components/schemas/Parent"
    },
    "columns": {
      "$ref": "#/components/schemas/Columns"
    },
    "filters": {
      "$ref": "#/components/schemas/Filters"
    },
    "sorting": {
      "$ref": "#/components/schemas/Sorting"
    },
    "grouping": {
      "$ref": "#/components/schemas/Grouping"
    },
    "settings": {
      "$ref": "#/components/schemas/Settings"
    },
    "team_sidebar": {
      "$ref": "#/components/schemas/TeamSidebar"
    }
  },
  "x-examples": [
    {
      "name": "New View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "512X",
        "type": 7
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  ]
}
object UpdateViewresponse
{
  "type": "object",
  "title": "UpdateViewresponse",
  "example": {
    "view": {
      "id": "3c-105X",
      "name": "New View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "512X",
        "type": 7
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": []
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  },
  "required": [
    "view"
  ],
  "properties": {
    "view": {
      "$ref": "#/components/schemas/View"
    }
  },
  "x-examples": [
    {
      "view": {
        "id": "3c-105X",
        "name": "New View Name",
        "type": "list",
        "divide": {
          "dir": null,
          "field": null,
          "collapsed": []
        },
        "parent": {
          "id": "512X",
          "type": 7
        },
        "columns": {
          "fields": []
        },
        "filters": {
          "op": "AND",
          "fields": [],
          "search": "",
          "show_closed": false
        },
        "sorting": {
          "fields": []
        },
        "grouping": {
          "dir": 1,
          "field": "status",
          "ignore": false,
          "collapsed": []
        },
        "settings": {
          "me_comments": true,
          "me_subtasks": true,
          "show_images": true,
          "me_checklists": true,
          "show_subtasks": 3,
          "show_assignees": true,
          "show_task_locations": false,
          "show_closed_subtasks": false,
          "collapse_empty_columns": null,
          "show_subtask_parent_names": false
        },
        "team_sidebar": {
          "assignees": [],
          "unassigned_tasks": false,
          "assigned_comments": false
        }
      }
    }
  ]
}
object UpdateWebhookrequest
{
  "type": "object",
  "title": "UpdateWebhookrequest",
  "example": {
    "events": "*",
    "status": "active",
    "endpoint": "https://yourdomain.com/webhook"
  },
  "required": [
    "endpoint",
    "events",
    "status"
  ],
  "properties": {
    "events": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "endpoint": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "events": "*",
      "status": "active",
      "endpoint": "https://yourdomain.com/webhook"
    }
  ]
}
object UpdateWebhookresponse
{
  "type": "object",
  "title": "UpdateWebhookresponse",
  "example": {
    "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
    "webhook": {
      "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
      "events": [
        "taskCreated",
        "taskUpdated",
        "taskDeleted",
        "taskPriorityUpdated",
        "taskStatusUpdated",
        "taskAssigneeUpdated",
        "taskDueDateUpdated",
        "taskTagUpdated",
        "taskMoved",
        "taskCommentPosted",
        "taskCommentUpdated",
        "taskTimeEstimateUpdated",
        "taskTimeTrackedUpdated",
        "listCreated",
        "listUpdated",
        "listDeleted",
        "folderCreated",
        "folderUpdated",
        "folderDeleted",
        "spaceCreated",
        "spaceUpdated",
        "spaceDeleted",
        "goalCreated",
        "goalUpdated",
        "goalDeleted",
        "keyResultCreated",
        "keyResultUpdated",
        "keyResultDeleted"
      ],
      "health": {
        "status": "active",
        "fail_count": 0
      },
      "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
      "userid": 183,
      "list_id": null,
      "task_id": null,
      "team_id": 108,
      "endpoint": "https://yourdomain.com/webhook",
      "space_id": null,
      "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
      "folder_id": null
    }
  },
  "required": [
    "id",
    "webhook"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "webhook": {
      "$ref": "#/components/schemas/Webhook"
    }
  },
  "x-examples": [
    {
      "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
      "webhook": {
        "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
        "events": [
          "taskCreated",
          "taskUpdated",
          "taskDeleted",
          "taskPriorityUpdated",
          "taskStatusUpdated",
          "taskAssigneeUpdated",
          "taskDueDateUpdated",
          "taskTagUpdated",
          "taskMoved",
          "taskCommentPosted",
          "taskCommentUpdated",
          "taskTimeEstimateUpdated",
          "taskTimeTrackedUpdated",
          "listCreated",
          "listUpdated",
          "listDeleted",
          "folderCreated",
          "folderUpdated",
          "folderDeleted",
          "spaceCreated",
          "spaceUpdated",
          "spaceDeleted",
          "goalCreated",
          "goalUpdated",
          "goalDeleted",
          "keyResultCreated",
          "keyResultUpdated",
          "keyResultDeleted"
        ],
        "health": {
          "status": "active",
          "fail_count": 0
        },
        "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
        "userid": 183,
        "list_id": null,
        "task_id": null,
        "team_id": 108,
        "endpoint": "https://yourdomain.com/webhook",
        "space_id": null,
        "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
        "folder_id": null
      }
    }
  ]
}
object UpdateatimeEntryrequest
{
  "type": "object",
  "title": "UpdateatimeEntryrequest",
  "example": {
    "end": 1595289495842,
    "tid": "task_id",
    "tags": [
      {
        "name": "name of tag",
        "tag_bg": "#BF55EC",
        "tag_fg": "#FFFFFF"
      }
    ],
    "start": 1595289395842,
    "billable": true,
    "duration": 100000,
    "tag_action": "add",
    "description": ""
  },
  "required": [
    "tags"
  ],
  "properties": {
    "end": {
      "type": "integer",
      "description": "When providing `end`, you must also provide `start`.",
      "contentEncoding": "int64"
    },
    "tid": {
      "type": "string"
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tags6"
      },
      "description": "Users on the Business Plan and above can include a time tracking label."
    },
    "start": {
      "type": "integer",
      "description": "When providing `start`, you must also provide `end`.",
      "contentEncoding": "int64"
    },
    "billable": {
      "type": "boolean"
    },
    "duration": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "tag_action": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "end": 1595289495842,
      "tid": "task_id",
      "tags": [
        {
          "name": "name of tag",
          "tag_bg": "#BF55EC",
          "tag_fg": "#FFFFFF"
        }
      ],
      "start": 1595289395842,
      "billable": true,
      "duration": 100000,
      "tag_action": "add",
      "description": ""
    }
  ]
}
object User
{
  "type": "object",
  "title": "User",
  "example": {
    "id": 123,
    "color": "#000000",
    "username": "John Doe",
    "profilePicture": "https://clickup.com/avatar.jpg"
  },
  "required": [
    "id",
    "username",
    "color",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 123,
      "color": "#000000",
      "username": "John Doe",
      "profilePicture": "https://clickup.com/avatar.jpg"
    }
  ]
}
object User13
{
  "type": "object",
  "title": "User13",
  "example": {
    "id": 1,
    "color": "#795548",
    "email": "johndoe@gmail.com",
    "initials": "JD",
    "username": "John Doe",
    "profilePicture": null
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "initials",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": 1,
      "color": "#795548",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": null
    }
  ]
}
object User2
{
  "type": "object",
  "title": "User2",
  "example": {
    "id": 183,
    "color": "#827718",
    "email": "johndoe@gmail.com",
    "initials": "JD",
    "username": "John Doe",
    "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
  },
  "required": [
    "id",
    "username",
    "initials",
    "email",
    "color",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#827718",
      "email": "johndoe@gmail.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": "https://attachments-public.clickup.com/profilePictures/183_abc.jpg"
    }
  ]
}
object User21
{
  "type": "object",
  "title": "User21",
  "example": {
    "id": 184,
    "role": 3,
    "color": null,
    "email": "user@example.com",
    "initials": "G",
    "username": "User Name",
    "custom_role": {
      "id": 998877,
      "name": "member custom"
    },
    "date_joined": null,
    "last_active": null,
    "date_invited": "1583358383412",
    "profilePicture": null
  },
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "role": {
      "type": "integer",
      "description": "Owner = 1, Admin = 2, Member = 3, Guest = 4",
      "contentEncoding": "int32"
    },
    "color": {
      "type": [
        "string",
        "null"
      ]
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "custom_role": {
      "$ref": "#/components/schemas/CustomRole"
    },
    "date_joined": {
      "type": [
        "string",
        "null"
      ]
    },
    "last_active": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_invited": {
      "type": "string"
    },
    "profilePicture": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": 184,
      "role": 3,
      "color": null,
      "email": "user@example.com",
      "initials": "G",
      "username": "User Name",
      "custom_role": {
        "id": 998877,
        "name": "member custom"
      },
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    }
  ]
}
object User5
{
  "type": "object",
  "title": "User5",
  "example": {
    "id": 184,
    "role": 4,
    "color": null,
    "email": "guest@example.com",
    "initials": "G",
    "username": null,
    "custom_role": {
      "id": 12345,
      "name": "guest custom"
    },
    "date_joined": null,
    "last_active": null,
    "date_invited": "1583358383412",
    "profilePicture": null
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "profilePicture",
    "initials",
    "role",
    "custom_role",
    "last_active",
    "date_joined",
    "date_invited"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "role": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": [
        "string",
        "null"
      ]
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": [
        "string",
        "null"
      ]
    },
    "custom_role": {
      "$ref": "#/components/schemas/CustomRole"
    },
    "date_joined": {
      "type": [
        "string",
        "null"
      ]
    },
    "last_active": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_invited": {
      "type": "string"
    },
    "profilePicture": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "custom_role": {
        "id": 12345,
        "name": "guest custom"
      },
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    }
  ]
}
object User7
{
  "type": "object",
  "title": "User7",
  "example": {
    "id": 184,
    "role": 4,
    "color": null,
    "email": "guest@example.com",
    "initials": "G",
    "username": null,
    "date_joined": null,
    "last_active": null,
    "date_invited": "1583358383412",
    "profilePicture": null
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "profilePicture",
    "initials",
    "role",
    "last_active",
    "date_joined",
    "date_invited"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "role": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": [
        "string",
        "null"
      ]
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_joined": {
      "type": [
        "string",
        "null"
      ]
    },
    "last_active": {
      "type": [
        "string",
        "null"
      ]
    },
    "date_invited": {
      "type": "string"
    },
    "profilePicture": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": 184,
      "role": 4,
      "color": null,
      "email": "guest@example.com",
      "initials": "G",
      "username": null,
      "date_joined": null,
      "last_active": null,
      "date_invited": "1583358383412",
      "profilePicture": null
    }
  ]
}
object Value
{
  "type": "object",
  "title": "Value",
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": [
        "string",
        "null"
      ]
    }
  }
}
object Value1
{
  "type": "object",
  "title": "Value1",
  "example": {
    "id": 183,
    "color": "#7b68ee",
    "email": "john@example.com",
    "initials": "JD",
    "username": "John Doe",
    "profilePicture": null
  },
  "required": [
    "id",
    "username",
    "email",
    "color",
    "initials",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "initials": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": 183,
      "color": "#7b68ee",
      "email": "john@example.com",
      "initials": "JD",
      "username": "John Doe",
      "profilePicture": null
    }
  ]
}
object Value2
{
  "type": "object",
  "title": "Value2",
  "example": [
    "This is a text CF"
  ],
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string"
    }
  }
}
object View
{
  "type": "object",
  "title": "View",
  "example": {
    "id": "3c-105X",
    "name": "New Team View Name",
    "type": "list",
    "divide": {
      "dir": null,
      "field": null,
      "collapsed": []
    },
    "parent": {
      "id": "512X",
      "type": 7
    },
    "columns": {
      "fields": []
    },
    "filters": {
      "op": "AND",
      "fields": [],
      "search": "",
      "show_closed": false
    },
    "sorting": {
      "fields": {
        "dir": -1,
        "idx": 0,
        "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
      }
    },
    "grouping": {
      "dir": 1,
      "field": "status",
      "ignore": false,
      "collapsed": []
    },
    "settings": {
      "me_comments": true,
      "me_subtasks": true,
      "show_images": true,
      "me_checklists": true,
      "show_subtasks": 3,
      "show_assignees": true,
      "show_task_locations": false,
      "show_closed_subtasks": false,
      "collapse_empty_columns": null,
      "show_subtask_parent_names": false
    },
    "team_sidebar": {
      "assignees": [],
      "unassigned_tasks": false,
      "assigned_comments": false
    }
  },
  "required": [
    "id",
    "name",
    "type",
    "parent",
    "grouping",
    "divide",
    "sorting",
    "filters",
    "columns",
    "team_sidebar",
    "settings"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "divide": {
      "$ref": "#/components/schemas/Divide"
    },
    "parent": {
      "$ref": "#/components/schemas/Parent"
    },
    "columns": {
      "$ref": "#/components/schemas/Columns"
    },
    "filters": {
      "$ref": "#/components/schemas/Filters"
    },
    "sorting": {
      "$ref": "#/components/schemas/Sorting"
    },
    "grouping": {
      "$ref": "#/components/schemas/Grouping"
    },
    "settings": {
      "$ref": "#/components/schemas/Settings"
    },
    "team_sidebar": {
      "$ref": "#/components/schemas/TeamSidebar"
    }
  },
  "x-examples": [
    {
      "id": "3c-105X",
      "name": "New Team View Name",
      "type": "list",
      "divide": {
        "dir": null,
        "field": null,
        "collapsed": []
      },
      "parent": {
        "id": "512X",
        "type": 7
      },
      "columns": {
        "fields": []
      },
      "filters": {
        "op": "AND",
        "fields": [],
        "search": "",
        "show_closed": false
      },
      "sorting": {
        "fields": {
          "dir": -1,
          "idx": 0,
          "field": "cf_624a423a-c1d1-4467-99e2-63e225658cb2"
        }
      },
      "grouping": {
        "dir": 1,
        "field": "status",
        "ignore": false,
        "collapsed": []
      },
      "settings": {
        "me_comments": true,
        "me_subtasks": true,
        "show_images": true,
        "me_checklists": true,
        "show_subtasks": 3,
        "show_assignees": true,
        "show_task_locations": false,
        "show_closed_subtasks": false,
        "collapse_empty_columns": null,
        "show_subtask_parent_names": false
      },
      "team_sidebar": {
        "assignees": [],
        "unassigned_tasks": false,
        "assigned_comments": false
      }
    }
  ]
}
object ViewsDeleteViewByIdResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object Watchers
{
  "type": "object",
  "title": "Watchers",
  "example": {
    "add": [
      182,
      121
    ],
    "rem": [
      183,
      122
    ]
  },
  "required": [
    "add",
    "rem"
  ],
  "properties": {
    "add": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    },
    "rem": {
      "type": "array",
      "items": {
        "type": "integer",
        "contentEncoding": "int32"
      },
      "description": ""
    }
  },
  "x-examples": [
    {
      "add": [
        182,
        121
      ],
      "rem": [
        183,
        122
      ]
    }
  ]
}
object Watchers1
{
  "type": "object",
  "title": "Watchers1",
  "example": {
    "id": 123,
    "color": "#000000",
    "email": "johndoe@website.com",
    "username": "John Doe",
    "profilePicture": "https://clickup.com/avatar.jpg"
  },
  "required": [
    "id",
    "username",
    "color",
    "email",
    "profilePicture"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "color": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "profilePicture": {
      "type": "string"
    }
  },
  "x-examples": [
    {
      "id": 123,
      "color": "#000000",
      "email": "johndoe@website.com",
      "username": "John Doe",
      "profilePicture": "https://clickup.com/avatar.jpg"
    }
  ]
}
object Webhook
{
  "type": "object",
  "title": "Webhook",
  "example": {
    "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
    "events": [
      "taskCreated",
      "taskUpdated",
      "taskDeleted",
      "taskPriorityUpdated",
      "taskStatusUpdated",
      "taskAssigneeUpdated",
      "taskDueDateUpdated",
      "taskTagUpdated",
      "taskMoved",
      "taskCommentPosted",
      "taskCommentUpdated",
      "taskTimeEstimateUpdated",
      "taskTimeTrackedUpdated",
      "listCreated",
      "listUpdated",
      "listDeleted",
      "folderCreated",
      "folderUpdated",
      "folderDeleted",
      "spaceCreated",
      "spaceUpdated",
      "spaceDeleted",
      "goalCreated",
      "goalUpdated",
      "goalDeleted",
      "keyResultCreated",
      "keyResultUpdated",
      "keyResultDeleted"
    ],
    "health": {
      "status": "active",
      "fail_count": 0
    },
    "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
    "userid": 183,
    "list_id": null,
    "task_id": null,
    "team_id": 108,
    "endpoint": "https://yourdomain.com/webhook",
    "space_id": null,
    "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
    "folder_id": null
  },
  "required": [
    "id",
    "userid",
    "team_id",
    "endpoint",
    "client_id",
    "events",
    "task_id",
    "list_id",
    "folder_id",
    "space_id",
    "health",
    "secret"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "health": {
      "$ref": "#/components/schemas/Health"
    },
    "secret": {
      "type": "string"
    },
    "userid": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "list_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "task_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "team_id": {
      "type": "integer",
      "contentEncoding": "int32"
    },
    "endpoint": {
      "type": "string"
    },
    "space_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "client_id": {
      "type": "string"
    },
    "folder_id": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "x-examples": [
    {
      "id": "4b67ac88-e506-4a29-9d42-26e504e3435eX",
      "events": [
        "taskCreated",
        "taskUpdated",
        "taskDeleted",
        "taskPriorityUpdated",
        "taskStatusUpdated",
        "taskAssigneeUpdated",
        "taskDueDateUpdated",
        "taskTagUpdated",
        "taskMoved",
        "taskCommentPosted",
        "taskCommentUpdated",
        "taskTimeEstimateUpdated",
        "taskTimeTrackedUpdated",
        "listCreated",
        "listUpdated",
        "listDeleted",
        "folderCreated",
        "folderUpdated",
        "folderDeleted",
        "spaceCreated",
        "spaceUpdated",
        "spaceDeleted",
        "goalCreated",
        "goalUpdated",
        "goalDeleted",
        "keyResultCreated",
        "keyResultUpdated",
        "keyResultDeleted"
      ],
      "health": {
        "status": "active",
        "fail_count": 0
      },
      "secret": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA",
      "userid": 183,
      "list_id": null,
      "task_id": null,
      "team_id": 108,
      "endpoint": "https://yourdomain.com/webhook",
      "space_id": null,
      "client_id": "QVOQP06ZXC6CMGVFKB0ZT7J9Y7APOYGO",
      "folder_id": null
    }
  ]
}
object WebhooksRemoveWebhookByIdResponse
{
  "type": "object",
  "example": {},
  "x-examples": [
    {}
  ],
  "contentMediaType": "application/json"
}
object Zoom
{
  "type": "object",
  "title": "Zoom",
  "example": {
    "enabled": false
  },
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean"
    }
  },
  "x-examples": [
    {
      "enabled": false
    }
  ]
}