Skip to main content
GET
/
webhook
/
events
List Webhook Events
curl --request GET \
  --url https://uat-api.clinkbill.com/api/webhook/events \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-Timestamp: <api-key>'
{
  "code": 200,
  "msg": "Success",
  "data": {
    "events": [
      {
        "code": 123,
        "description": "<string>"
      }
    ],
    "aliases": {
      "all": [],
      "core": []
    }
  }
}

Authorizations

X-API-KEY
string
header
required

Your secret API key obtained from the Clink dashboard (Developers section)

X-Timestamp
string
header
required

Current timestamp in milliseconds since Unix epoch (required for request signing)

Response

Webhook events retrieved successfully

Body of the response message

code
integer<int32>

Response status code, 200 when success

Example:

200

msg
string

Brief description of what happened, 'success' when happy case

Example:

"Success"

data
object