Sample Webhook Payloads

Webhooks will fire when an event you have subscribed to occurs in Resolver Core. The following payload samples are intended to help your implementation team to set up event registrations.

Inbound Webhook Payloads

When registering for Webhooks, you can subscribe to multiple events. The following is a sample payload taken from Core’s Swagger registration endpoint.

{
  "name": "A Name",
  "endpoint": "https://example.com/",
  "events": [
    {
      "type": "USER_ADDED_TO_ORG"
    },
    {
      "type": "USER_REMOVED_FROM_ORG"
    },
    {
      "type": "ADD_OBJECT",
      "criteria": [
        {
          "objectType": 1
        }
      ],
      "returning": {
        "fields": [
          1
        ],
        "formulas": [
          1
        ]
      }
    },
    {
      "type": "UPDATE_FIELD",
      "criteria": [
        {
          "objectType": 1,
          "field": 1
        },
        {
          "objectType": 1,
          "property": "name"
        },
        {
          "objectType": 1,
          "property": "description"
        },
        {
          "objectType": 1,
          "property": "geolocationId"
        }
      ],
      "returning": {
        "fields": [
          1
        ],
        "formulas": [
          1
        ]
      }
    },
    {
      "type": "DELETE_OBJECT",
      "criteria": [
        {
          "objectType": 1
        }
      ],
      "returning": {
        "fields": [
          1
        ],
        "formulas": [
          1
        ]
      }
    },
    {
      "type": "OBJECT_STATE_CHANGE",
      "criteria": [
        {
          "state": 1
        }
      ],
      "returning": {
        "fields": [
          1
        ],
        "formulas": [
          1
        ]
      }
    },
    {
      "type": "OBJECT_ROLE_ASSIGNMENT",
      "criteria": [
        {
          "objectType": 1,
          "role": 1
        }
      ]
    },
    {
      "type": "OBJECT_ROLE_UNASSIGNMENT",
      "criteria": [
        {
          "objectType": 1,
          "role": 1
        }
      ]
    },
    {
      "type": "ADD_RELATIONSHIP",
      "criteria": [
        {
          "relationship": 1
        }
      ]
    },
    {
      "type": "DELETE_RELATIONSHIP",
      "criteria": [
        {
          "relationship": 1
        }
      ]
    },
    {
      "type": "ADD_COMMENT",
      "criteria": [
        {
          "objectType": 1
        }
      ]
    },
    {
      "type": "UPDATE_COMMENT",
      "criteria": [
        {
          "objectType": 1
        },
        {
          "objectType": 1,
          "commentState": "resolved"
        },
        {
          "objectType": 1,
          "commentState": "unresolved"
        },
        {
          "objectType": 1,
          "commentState": "all"
        }
      ]
    },
    {
      "type": "USER_ADDED_TO_GROUP",
      "criteria": [
        {
          "group": 1
        }
      ]
    },
    {
      "type": "USER_REMOVED_FROM_GROUP",
      "criteria": [
        {
          "group": 1
        }
      ]
    },
    {
      "type": "USER_ADDED_TO_ROLE",
      "criteria": [
        {
          "role": 1
        }
      ]
    },
    {
      "type": "USER_REMOVED_FROM_ROLE",
      "criteria": [
        {
          "role": 1
        }
      ]
    }
  ]
}

Outbond Webhook Payloads

The following are samples of outbound webhook events: