Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the task. |
| description | string | The task description in rich text format. |
| markdown_description | string | The task description in Markdown format. |
| assignees | array | Array of user IDs to assign to the task. |
| tags | array | Array of tag names to apply to the task. |
| status | string | The status of the task. |
| priority | integer | Task priority. 1 is Urgent, 2 is High, 3 is Normal, 4 is Low. |
| due_date | integer | Due date as Unix timestamp in milliseconds. |
| due_date_time | boolean | Whether the due date includes a time component. |
| time_estimate | integer | Time estimate in milliseconds. |
| start_date | integer | Start date as Unix timestamp in milliseconds. |
| start_date_time | boolean | Whether the start date includes a time component. |
| notify_all | boolean | Notify all assignees and watchers of task creation. |
| parent | string | The task ID of the parent task to create this as a subtask. |
| links_to | string | The task ID to link this task to. |
| check_required_custom_fields | boolean | Whether to validate required custom fields. |
| custom_fields | array | Custom field values to set on the task. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateTaskRequest",
"title": "CreateTaskRequest",
"type": "object",
"required": [
"name"
],
"description": "Request body for creating a new task.",
"properties": {
"name": {
"type": "string",
"description": "The name of the task."
},
"description": {
"type": "string",
"description": "The task description in rich text format."
},
"markdown_description": {
"type": "string",
"description": "The task description in Markdown format."
},
"assignees": {
"type": "array",
"items": {
"type": "integer"
},
"description": "Array of user IDs to assign to the task."
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of tag names to apply to the task."
},
"status": {
"type": "string",
"description": "The status of the task."
},
"priority": {
"type": "integer",
"minimum": 1,
"maximum": 4,
"nullable": true,
"description": "Task priority. 1 is Urgent, 2 is High, 3 is Normal, 4 is Low."
},
"due_date": {
"type": "integer",
"format": "int64",
"description": "Due date as Unix timestamp in milliseconds."
},
"due_date_time": {
"type": "boolean",
"description": "Whether the due date includes a time component."
},
"time_estimate": {
"type": "integer",
"description": "Time estimate in milliseconds."
},
"start_date": {
"type": "integer",
"format": "int64",
"description": "Start date as Unix timestamp in milliseconds."
},
"start_date_time": {
"type": "boolean",
"description": "Whether the start date includes a time component."
},
"notify_all": {
"type": "boolean",
"description": "Notify all assignees and watchers of task creation."
},
"parent": {
"type": "string",
"nullable": true,
"description": "The task ID of the parent task to create this as a subtask."
},
"links_to": {
"type": "string",
"nullable": true,
"description": "The task ID to link this task to."
},
"check_required_custom_fields": {
"type": "boolean",
"description": "Whether to validate required custom fields."
},
"custom_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The custom field ID."
},
"value": {
"description": "The value to set for the custom field."
}
}
},
"description": "Custom field values to set on the task."
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/clickup-createtaskrequest"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.