- Pings a webhook endpoint
Lists webhook endpoints
Creates a webhook endpoint
Retrieves a webhook endpoint by ID
Updates a webhook endpoint
Deletes a webhook endpoint
Lists webhook event types
Lists webhook delivery logs
Retrieves a delivery log by ID
Exports webhook delivery logs
Retries a failed webhook delivery
Pings a webhook endpoint
GET {{baseURL}}/v2/webhooks/endpoints/{{endpointId}}/ping
This endpoint validates connectivity to the registered endpoint URL.
Security
Bearer
- Sandbox environmenthttps://sandbox.api.flute.com/v2/webhooks/endpoints/{endpointId}/ping
- Production environmenthttps://api.flute.com/v2/webhooks/endpoints/{endpointId}/ping
curl -i -X POST \
https://sandbox.api.flute.com/v2/webhooks/endpoints/c94e10ae-378e-4124-9b35-ecdfb9085a62/ping \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'OK
Indicates the ping was delivered successfully.
If true, the ping was delivered successfully.
If false, the ping was not delivered successfully.
Example: true
Example:true
Indicates the HTTP response status code.
This is the HTTP status code returned by the attempted delivery.
The following is a list of HTTP response status codes that include but are not limited to:
| HTTP Status | Meaning |
|---|---|
| 200 | Delivery succeeded |
| 400 | Bad request |
| 401 | Unauthorized |
| 404 | Endpoint not found |
| 429 | Rate limited |
Example: 200
Example:200
Indicates the round-trip duration (in milliseconds).
Example: 367
Example:367
Response
{ "isDelivered": true, "endpointHTTPResponseCode": 200, "roundTripDurationMs": 142, "errorMessage": null }