Skip to main content
GET
/
api
/
admin
/
webhooks
/
{id}
Get webhook details
curl --request GET \
  --url https://{cluster_id}.on-hellgate.cloud/api/admin/webhooks/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "events": [
    "network.token.updated"
  ],
  "url": "<string>",
  "masked_hmac_key": "123xxxx"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string<uuid>
required

The unique identifier of the webhook.

Response

Success response

id
string<uuid>
required

The unique identifier for the webhook.

created_at
string<date-time>
required

The timestamp when the webhook was created.

events
enum<string>[]
required

The list of events the webhook is subscribed to.

Minimum array length: 1

The type of event that occurred.

Available options:
network.token.updated,
pci.token.security-code.expired
url
string<uri>
required

The URL to which the webhook sends event notifications.

masked_hmac_key
string

The masked HMAC key used to sign the payloads sent to the webhook URL.

Example:

"123xxxx"