Get a list of all webhook subscription events.

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": "Circles",
      "events": [
        "circle.created",
        "circle.updated",
        "circle.deleted"
      ]
    },
    {
      "group": "Plans",
      "events": [
        "plan.created",
        "plan.updated",
        "plan.deleted"
      ]
    },
    {
      "group": "Cases",
      "events": [
        "case.created",
        "case.updated",
        "case.deleted"
      ]
    },
    {
      "group": "Tasks",
      "events": [
        "task.created",
        "task.updated",
        "task.deleted",
        "task.completed"
      ]
    },
    {
      "group": "Fact-Find",
      "events": [
        "fact-find.completed"
      ]
    },
    {
      "group": "Forms",
      "events": [
        "form-submission.completed"
      ]
    }
  ]
}