Seccl - List scheme products on Seccl 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
GET /api/v1/addons/seccl/{addon}/schema-products

Path parameters

  • addon string Required

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • id string

      The unique identifier

    • product_name string

      Name of this product

    • available_to_node_id array[string]

      The node ID the asset is available to

    • platform string

      The platform this product is available on

GET /api/v1/addons/seccl/{addon}/schema-products
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/addons/seccl/architecto/schema-products' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "031DF6J",
  "product_name": "Plannr Personal Pension",
  "available_to_node_id": [
    "0",
    "1"
  ],
  "platform": "seccl"
}