Skip to content

Get a webhook endpoint

Request

Retrieve a single webhook endpoint by ID, including its target URL, subscribed event types, and status.

Security
ApiKeyAuth
Path
idstringrequired
curl -i -X GET \
  'https://api.pioneerft.com/api/public/v1/webhook-endpoints/{id}' \
  -H 'Authorization: Bearer <YOUR_API Key_HERE>'

Responses

Webhook endpoint

Bodyapplication/json
dataobject(PublicWebhookEndpoint)
Response
{ "data": { "id": "string", "name": "string", "url": "string", "environment": "string", "status": "string", "subscribedEvents": [ "string" ], "consecutiveFailures": 0, "lastSuccessAt": "string", "lastFailureAt": "string", "lastFailureReason": "string", "autoDisabledAt": "string", "createdAt": "string" } }