Get a list of all webhook subscription events. 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/static/webhook-subscription-events

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • group string
      • events array[string]
GET /api/v1/static/webhook-subscription-events
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/static/webhook-subscription-events' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "group": "Accounts (Clients, Employees, Introducers)",
      "events": [
        "account.created",
        "account.updated",
        "account.deleted",
        "account.annual-review-date-occurred"
      ]
    },
    {
      "group": "Cases",
      "events": [
        "case.created",
        "case.updated",
        "case.deleted"
      ]
    },
    {
      "group": "Circles",
      "events": [
        "circle.created",
        "circle.updated",
        "circle.deleted"
      ]
    },
    {
      "group": "Client Bank Accounts",
      "events": [
        "bank-account.created",
        "bank-account.updated",
        "bank-account.deleted"
      ]
    },
    {
      "group": "Client Portal Documents",
      "events": [
        "client-portal-document.uploaded",
        "client-portal-document.updated",
        "client-portal-document.deleted"
      ]
    },
    {
      "group": "Conversations",
      "events": [
        "conversation.message.created",
        "conversation.message.updated",
        "conversation.message.deleted"
      ]
    },
    {
      "group": "Fact-Find",
      "events": [
        "fact-find.completed-v3"
      ]
    },
    {
      "group": "Fact-Find (Legacy)",
      "events": [
        "fact-find.completed"
      ]
    },
    {
      "group": "Forms",
      "events": [
        "form-submission.completed"
      ]
    },
    {
      "group": "Income Reconciliation",
      "events": [
        "bank-statement.created",
        "bank-statement.updated",
        "bank-statement.deleted",
        "bank-transaction.created",
        "bank-transaction.updated",
        "bank-transaction.deleted",
        "provider-statement.created",
        "provider-statement.updated",
        "provider-statement.deleted",
        "transaction.created",
        "transaction.updated",
        "transaction.deleted",
        "transaction.reconciled",
        "transaction.unreconciled",
        "statement.lock-status"
      ]
    },
    {
      "group": "Plans",
      "events": [
        "plan.created",
        "plan.updated",
        "plan.deleted"
      ]
    },
    {
      "group": "Tasks",
      "events": [
        "task.created",
        "task.updated",
        "task.deleted",
        "task.completed"
      ]
    }
  ]
}