Skip to main content
GET
/
v1
/
webhooks
/
endpoints
List webhook endpoints
curl --request GET \
  --url https://api.truthlocks.com/v1/webhooks/endpoints \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "url": "<string>",
      "status": "<string>",
      "event_filters": [
        "<string>"
      ],
      "created_at": "<string>"
    }
  ]
}
Returns all webhook endpoints for the authenticated tenant, sorted by creation time (newest first). The endpoint secret is not included in list responses — it is only returned once when the endpoint is created.

Response fields

FieldTypeDescription
iduuidUnique identifier for the endpoint
namestringHuman-readable name you assigned when creating the endpoint
urlstringThe HTTPS URL that receives webhook deliveries
statusstringCurrent endpoint status: active or disabled
event_filtersstring[]Event types or wildcard patterns the endpoint subscribes to
created_atstringISO 8601 timestamp when the endpoint was created
updated_atstringISO 8601 timestamp of the last modification

Responses

Authorizations

X-API-Key
string
header
required

API key for machine-to-machine authentication

Response

Webhook endpoints

items
object[]