Register an HTTPS endpoint to receive event deliveries. The signing secret is returned ONCE in this response and never again — store it securely. Private/loopback URLs are rejected.
Security
ApiKeyAuth
- https://api.pioneerft.com/apihttps://api.pioneerft.com/api/public/v1/webhook-endpoints
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/webhook-endpoints
curl -i -X POST \
https://api.pioneerft.com/api/public/v1/webhook-endpoints \
-H 'Authorization: Bearer <YOUR_API Key_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"name": "string",
"url": "string",
"subscribedEvents": [
"loan.created"
]
}'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", "secret": "string" } }