create_milestone
Creates a new milestone (sprint) within a Taiga project by specifying session ID, project ID, milestone name, and estimated start and finish dates.
Instructions
Creates a new milestone (sprint) within a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
estimated_finish | Yes | ||
estimated_start | Yes | ||
name | Yes | ||
project_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"estimated_finish": {
"title": "Estimated Finish",
"type": "string"
},
"estimated_start": {
"title": "Estimated Start",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id",
"name",
"estimated_start",
"estimated_finish"
],
"title": "create_milestoneArguments",
"type": "object"
}