GET
/
v1
/
webhooks
/
endpoints
/
{id}
Get webhook endpoint
curl --request GET \
  --url https://api.hyperline.co/v1/webhooks/endpoints/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga2",
  "description": "Production webhook endpoint",
  "url": "https://example.com/webhook",
  "rate_limit": 123,
  "event_types": [
    "customer.created",
    "customer.updated"
  ],
  "created_at": "2024-01-20T16:04:11Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json
id
string
required

Webhook endpoint ID.

Example:

"ep_1srOrx2ZWZBpBUvZwXKQmoEYga2"

description
string
required

Webhook endpoint description.

Example:

"Production webhook endpoint"

url
string<uri>
required

Webhook endpoint URL.

Example:

"https://example.com/webhook"

rate_limit
number | null
required

Webhook rate limit (per second).

event_types
enum<string>[] | null
required

Webhook event types filter. If not defined, all event messages will be sent.

Example:
["customer.created", "customer.updated"]
created_at
string<date-time>
required

Webhook creation date.

Example:

"2024-01-20T16:04:11Z"