post https://app.investglass.com/api/v1/tasks
Create Calendar Event Task
This endpoint allows the creation of a task with an option to create a calendar event.
Request Body
task
(object)title
(string): Title of the task
to_do
(string): Description of the task
category
(string): Category of the task
priority
(string): Priority level of the task
resource_type
(string): Type of resource associated with the task
resource_id
(integer): ID of the associated resource
user_ids
(array of integers): IDs of users associated with the task
is_flagged
(string): Flag indicating if the task is flagged
due_date
(string): Due date of the task
due_time
(string): Due time of the task
reminder_date
(string): Reminder date for the task
reminder_time
(string): Reminder time for the task
Response (JSON Schema)
{
"type": "object",
"properties": {
"id": {"type": "integer"},
"title": {"type": "string"},
"due_date": {"type": "string"},
"to_do": {"type": "string"},
"is_flagged": {"type": "boolean"},
"priority": {"type": "string"}
}
}