event-subscriptions

List Event Subscriptions

Get all event subscriptions.

get/groups/{groupId}/apps/{appId}/event_subscriptions

Response

Success.

Example response

[
  {
    "name": "onNewEmployee",
    "type": "DATABASE",
    "function_id": "5eea9ca4ca0e356e2c2a148a",
    "function_name": "handleNewEmployeeEvent",
    "event_processors": {
      "FUNCTION": {
        "function_id": "5eea9ca4ca0e356e2c2a148a",
        "function_name": "handleNewEmployeeEvent"
      }
    },
    "config": {
      "operation_types": [
        "INSERT"
      ],
      "database": "HR",
      "collection": "employees",
      "service_id": "5adeb649b8b998486770ae7c",
      "match": {},
      "full_document": true
    }
  }
]

Changes