Get all webhook subscriptions 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/v2/webhook-subscriptions

Headers

  • X-PLANNR-ACCOUNT-UUID string

Query parameters

  • filter[uuid] string

    Filter by a comma separated list of UUIDs.

  • filter[url] string

    Filter by a comma separated list of URLs.

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at]. Negative sign to denote DESC. Defaults to '-created_at'.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • created_at string
      • updated_at string
      • signing_secret string
      • url string
      • events array[string]
      • last_outgoing_webhook_call_at string
GET /api/v2/webhook-subscriptions
curl \
 --request GET 'https://api.plannrcrm.com/api/v2/webhook-subscriptions' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    [
      {
        "uuid": "a5bb9dea-0268-4560-bd02-010786a9666e",
        "created_at": "2026-07-30T15:16:54+01:00",
        "updated_at": "2026-07-30T15:16:54+01:00",
        "signing_secret": "Ag9dl0iV937AV0GOX4WuLpkd0yfAfPQIkEnSoP7vB7iAW3zqmCqH7vWLqsnA",
        "url": "https://api.example.com/webhooks",
        "events": [
          "account.deleted",
          "circle.created"
        ],
        "last_outgoing_webhook_call_at": "2026-07-30T15:16:54+01:00"
      }
    ]
  ]
}