GET
/
notification
/
v1
/
connect
/
webhook
/
subscriptions
curl --request GET \
  --url https://api.eka.care/notification/v1/connect/webhook/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "7",
      "scope": [
        "appointment.created",
        "appointment.updated",
        "prescription.created",
        "prescription.updated"
      ],
      "endpoint": "https://example.com/webhook",
      "signing_key": "supersecretkey",
      "client_id": "testing",
      "protocol": "https",
      "created_at": "2024-10-07T13:53:52Z",
      "updated_at": "2024-10-07T13:53:52Z",
      "created_by": "testing",
      "updated_by": "testing"
    }
  ],
  "msg": "success"
}

Authorizations

Authorization
string
header
required

The API requires a Bearer token in the Authorization header for authentication.

Response

200
application/json
List of webhooks.
data
object[]
msg
string

A message indicating the status of the response, typically "success".