Remove a participant from a workflow task Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
DELETE /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants

Path parameters

  • workflow_uuid string Required
  • workflowTask_uuid string Required
application/json

Body

  • participants array[string(uuid)]

    Account uuids belonging to the workflow board task.

DELETE /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
curl \
 --request DELETE 'https://api.plannrcrm.com/api/v1/workflow/6ff8f7f6-1eb3-3525-be4a-3932c805afed/task/6ff8f7f6-1eb3-3525-be4a-3932c805afed/participants' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"participants":["dceb1915-af5d-4636-aaa1-d9796dc0ad5c","59a51205-0382-4e03-981c-ebf6713444ee","b97c9671-0646-4154-8ad6-c7a02c3b16d8"]}'
Request examples
{
  "participants": [
    "dceb1915-af5d-4636-aaa1-d9796dc0ad5c",
    "59a51205-0382-4e03-981c-ebf6713444ee",
    "b97c9671-0646-4154-8ad6-c7a02c3b16d8"
  ]
}