v1
latestOpenAPI 3.0.12026-07-2464217456.8 KBTasks
Remove followers from a task by Id
post/1.0/tasks/{taskId}/remove-followers
Path parameters
taskIdinteger required
The task's unique, system-generated identifier, which can be used to identify the task globally
Request body
Example request
{
"members": [
{
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
}
]
}Response
The requested action was successfully executed.
Example response
{
"taskId": 201,
"taskName": "Kick off",
"taskDescription": "<p>Schedule Kick off meeting with the stakeholders involved.</p>",
"startDate": "2023-03-28",
"dueDate": "2023-03-28",
"effortInMinutes": 3000,
"progress": 50,
"atRisk": true,
"createdAt": 1681319726000,
"updatedAt": 1681319726000,
"createdBy": {
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
},
"updatedBy": {
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
},
"project": {
"projectId": 201,
"projectName": "Acme onboarding"
},
"status": {
"value": 2,
"label": "In progress"
},
"fields": [
{
"fieldId": 201,
"fieldLabel": "MRR",
"fieldValueLabel": "1000"
}
],
"assignees": {
"members": [
{
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
}
],
"placeholders": [
{
"placeholderId": 201,
"placeholderName": "Customer Success",
"role": {
"roleId": 101,
"roleName": "Designer"
}
}
]
},
"followers": {
"members": [
{
"emailId": "john.doe@rocketlane.com",
"userId": 201,
"firstName": "John",
"lastName": "Doe"
}
]
}
}