GET
/
api
/
platform
/
v1
/
webhook_endpoints
curl --request GET \
  --url https://api.bspk.com/api/platform/v1/webhook_endpoints \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 2,
    "target_url": "https://taget_url.com/endpoint/to/hit_2",
    "events": [
      "client.created",
      "client.updated",
      "client.deleted"
    ],
    "is_enabled": true,
    "created_at": "2024-08-07T12:29:11.915Z",
    "updated_at": "2024-08-07T12:29:11.915Z"
  },
  {
    "id": 1,
    "target_url": "https://taget_url.com/endpoint/to/hit_1",
    "events": [
      "client.created",
      "client.updated",
      "client.deleted"
    ],
    "is_enabled": true,
    "created_at": "2024-08-07T12:29:11.910Z",
    "updated_at": "2024-08-07T12:29:11.910Z"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful response, returns array of webhook endpoints

The response is of type object[].