Trigger and start running an automation 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/automation-blueprints/{automationBlueprint_uuid}/trigger

Path parameters

  • automationBlueprint_uuid string Required

    The UUID of the automation

application/json

Body

  • client_uuid string(uuid) Required

    The client to pass into the automation instance

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/automation-blueprints/{automationBlueprint_uuid}/trigger
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/automation-blueprints/dcf0-484e-a0c5-08590fe89a84-f6aa1670/trigger' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"client_uuid":"763c5a60-31e8-4396-bf69-8ae0cb668f1c"}'
Request examples
{
  "client_uuid": "763c5a60-31e8-4396-bf69-8ae0cb668f1c"
}
Response examples (401)
{
  "message": "Unauthenticated."
}