Skip to main content
GET
/
webhooks
/
{webhook_id}
/
headers
List all headers for a webhook
curl --request GET \
  --url http://localhost:3001/portal-api/webhooks/{webhook_id}/headers
[
  {
    "ID": "<string>",
    "Name": "<string>",
    "Value": "<string>"
  }
]

Path Parameters

webhook_id
string
required

Query Parameters

limit
integer

Maximum number of records to return for this request. Overrides the row count only, not the page offset (which is always based on per_page), so use per_page for pagination rather than combining limit with page. Defaults to the per_page value.

per_page
integer
default:20

Items per page. Defaults to the resource-specific page count if configured, otherwise 20

page
integer
default:1

Page number. Defaults to 1 when omitted

Response

A list of headers for the specified webhook.

ID
string

Unique identifier for the header

Name
string

Name of the header

Value
string

Value of the header