Add a participant to the 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
POST /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.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/workflow/{workflow_uuid}/task/{workflowTask_uuid}/participants
curl \
 --request POST '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":["1a6b703d-0414-464e-80dc-c25f5e55c6aa","3c945c40-c2ba-4850-8535-b2ba8f76972b","0d1edb10-e08d-47ca-9924-75c2fe0b6659"]}'
Request examples
{
  "participants": [
    "1a6b703d-0414-464e-80dc-c25f5e55c6aa",
    "3c945c40-c2ba-4850-8535-b2ba8f76972b",
    "0d1edb10-e08d-47ca-9924-75c2fe0b6659"
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}