Assign given task lists to given person.

PUT /actions/persons/{person_id}/assign

If a given task ID is wrong, it ignores it.

Path parameters

Body

List of tasks ID

Responses

  • 200

    Given tasks lists assigned to given person

PUT /actions/persons/{person_id}/assign
curl \
 -X PUT http://localhost:8080/api/actions/persons/{person_id}/assign \
 -H "Authorization: $API_KEY" \
 -d '{"task_ids":"a24a6ea4-ce75-4665-a070-57453082c25"}'
Request example
{
  "task_ids": "a24a6ea4-ce75-4665-a070-57453082c25"
}