Create Task
Creates a new task in the project
Overview
Create a new task within a project. Tasks can be assigned to team members, given priorities, and organized into sprints.Request Body
"Implement login feature"123"Write comprehensive documentation for all API endpoints""2025-12-31T23:59:59Z"13 (Medium)Example: 1[1, 2]Response
Example Request
Example Response
Error Responses
Notes
- Required fields:
task_nameandproject_idmust be provided - Default assignee: If no assignee is specified, the task will be assigned to the logged-in user
- Default priority: If no priority is specified, it defaults to 3 (Medium)
- Sprint assignment: Tasks can be assigned to multiple sprints simultaneously
- Priority levels: Use the priority API endpoint to get the complete list of available priority levels
- Date format: All dates should be in ISO 8601 format (UTC timezone)
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
The name of the task
"Implement login feature"
The ID of the project this task belongs to
123
Detailed description of the task
"Write comprehensive documentation for all API endpoints"
The due date for the task in UTC
"2025-12-31T23:59:59Z"
User ID of the person assigned to this task. Defaults to the logged-in user's ID if not provided.
1
Priority level of the task. You can get priority list using priority API. If not set, it will default to 3 (Medium)
1
Array of sprint IDs if you want to create this task under specific sprints
[1, 2]Response
New task response