GET
/
api
/
v1
/
external
/
webhook
Get all webhooks
curl --request GET \
  --url http://dev-backend-1.guestme.space/api/v1/external/webhook \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "url": "https://example.com/webhook",
    "token": "<string>",
    "authorizationHeaderPrefix": "Bearer",
    "events": [
      "CREATE"
    ],
    "entities": [
      "RESTAURANT"
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - */*

OK

The response is of type object[].