Create Be-IQ Risk Profile Invitation 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/addons/be-iq/profiler/invite
application/json

Body

  • client_account_uuid string(uuid) Required

    The client which you would like to send an invitation to.

  • employee_account_uuid string(uuid) Required

    The employee to associate the client to in Be-IQ. This is only required for the first invitation sent.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/addons/be-iq/profiler/invite
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/addons/be-iq/profiler/invite' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"client_account_uuid":"cc590b92-4d9a-44fa-9481-c8cb53869841","employee_account_uuid":"641d4c44-5cce-4e54-bd2f-402997995fbc"}'
Request examples
{
  "client_account_uuid": "cc590b92-4d9a-44fa-9481-c8cb53869841",
  "employee_account_uuid": "641d4c44-5cce-4e54-bd2f-402997995fbc"
}
Response examples (401)
{
  "message": "Unauthenticated."
}