GET
/
notification-service
/
api
/
v1
/
webhook-endpoints
curl --request GET \
  --url https://notification-service.vatis.tech/notification-service/api/v1/webhook-endpoints \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "url": "<string>",
    "events": [
      "<string>"
    ],
    "enabled": true,
    "description": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Operation succeeded.
id
string
url
string
events
string[]
enabled
boolean
description
string