v2

latestOpenAPI 3.1.02026-07-312303692.4 MB
Endpoint

Get Endpoint Headers

Get the additional headers to be sent with the webhook.

get/api/v1/app/{app_id}/endpoint/{endpoint_id}/headers

Path parameters

app_idstring required

The Application's ID or UID.

Example:unique-identifier

The Application's ID or UID.

endpoint_idstring required

The Endpoint's ID or UID.

Example:unique-identifier

The Endpoint's ID or UID.

Response

The value of the headers is returned in the headers field.

Sensitive headers that have been redacted are returned in the sensitive field.

headersobject required
sensitivestring[] required

Example response

{
  "headers": {
    "X-Example": "123",
    "X-Foobar": "Bar"
  },
  "sensitive": [
    "Authorization"
  ]
}