Create subscription entries for the current user and every task in the id list. Useful to subscribe to a selection in one request. Returns the created subscriptions.
POST
/actions/user/tasks/subscribe
curl \
--request POST 'http://api.example.com/actions/user/tasks/subscribe' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"task_ids":["string"]}'
Request examples
{
"task_ids": [
"string"
]
}
Response examples (201)
[
{}
]