API Documentation
Add collaborator
Description
Add a collaborator to a task. The collaborators are automatically ordered by name.
Request format
curl -X POST https://kanbanflow.com/api/v1/tasks/<TASK_ID>/collaborators -H "Content-type: application/json" -d '{ "<PROPERTY_1>": <PROPERTY_VALUE_1>, "<PROPERTY_2>": <PROPERTY_VALUE_2>, ... "<PROPERTY_N>": <PROPERTY_VALUE_N> }'Example request
curl -X POST https://kanbanflow.com/api/v1/tasks/T3s6UGyzY/collaborators -H "Content-type: application/json"
-d '{ "userId": "UHJ9JgtA" }'Valid properties
| Property | Type | Comment |
|---|---|---|
| userId | String | Required. The ID of the user. See Get users tab for information about how to get a user's ID. |