Create project task type link
Create a link between a project and a task type. Sets the priority of the task type within the project.
POST
/data/task-type-links
curl \
--request POST 'http://api.example.com/data/task-type-links' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"project_id":"a24a6ea4-ce75-4665-a070-57453082c25","task_type_id":"b24a6ea4-ce75-4665-a070-57453082c25","priority":1}'
Request examples
{
"project_id": "a24a6ea4-ce75-4665-a070-57453082c25",
"task_type_id": "b24a6ea4-ce75-4665-a070-57453082c25",
"priority": 1
}
Response examples (201)
{
"id": "c24a6ea4-ce75-4665-a070-57453082c25",
"project_id": "a24a6ea4-ce75-4665-a070-57453082c25",
"task_type_id": "b24a6ea4-ce75-4665-a070-57453082c25",
"priority": 1
}