Properties
| Name | Type | Description |
|---|---|---|
| content | string | To-do text description |
| description | string | Additional details in HTML format |
| assignee_ids | array | Person IDs to assign to this to-do |
| completion_subscriber_ids | array | Person IDs to notify when this to-do is completed |
| notify | boolean | Whether to immediately notify assignees |
| due_on | string | Due date in ISO 8601 format |
| starts_on | string | Start date in ISO 8601 format |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/basecamp/json-schema/todocreaterequest-schema.json",
"title": "TodoCreateRequest",
"type": "object",
"required": [
"content"
],
"properties": {
"content": {
"type": "string",
"description": "To-do text description"
},
"description": {
"type": "string",
"description": "Additional details in HTML format"
},
"assignee_ids": {
"type": "array",
"description": "Person IDs to assign to this to-do",
"items": {
"type": "integer"
}
},
"completion_subscriber_ids": {
"type": "array",
"description": "Person IDs to notify when this to-do is completed",
"items": {
"type": "integer"
}
},
"notify": {
"type": "boolean",
"description": "Whether to immediately notify assignees"
},
"due_on": {
"type": "string",
"format": "date",
"description": "Due date in ISO 8601 format"
},
"starts_on": {
"type": "string",
"format": "date",
"description": "Start date in ISO 8601 format"
}
}
}