Skip to content

Get active webhooks

Request

Returns a list of all active webhooks associated with your account.

Security
BearerAuth
curl -i -X GET \
  https://docs.speedysticks.com/_mock/openapi/api/webhooks \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Webhooks returned successfully

Bodyapplication/json
Array [
idinteger
Example:1
urlstring
Example:"https://api.speedysticks.com/webhook-endpoint"
eventsArray of strings
Example:
[ "appointment.approved.v1", "appointment.denied.v1" ]
]
Response
[ { "id": 1, "url": "https://api.speedysticks.com/webhook-endpoint", "events": [ … ] } ]