Skip to content

Lists webhook event types

Request

GET {{baseURL}}/v2/webhooks/event-types

This endpoint lists available webhook event types.

The list of available webhook event types are provided by Flute. These are the only events types available to be selected from. Operating system or other company's events cannot be used.

Each webhook must include at least one. Multiple events types may be included in a specific webhook but duplicates are not allowed. Each webhook is independent from other webhooks. The same events type may be included in different webhooks.

The set of events types do not have to relate to each other. It is the set of all event types of interest for the client. Clients may create multiple webhooks to provide granularity for their processes. In that case, the set of events types would likely be related for the client's intent.

See Also:
To create a webhook, see POST /v2/webhooks/endpoints.
To update a webhook, see PATCH /v2/webhooks/endpoints/{{endpointId}}.

Security
Bearer
curl -i -X GET \
  https://sandbox.api.flute.com/v2/webhooks/event-types \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

OK

Bodyapplication/json
dataArray of objects or null

Indicates an object list of webhook details.

Example:
[ { "items": [ { "endpointId": "633649fc-9d16-4d1b-98ec-73a3282427fc", "endpointName": "Peppared Street Cafe's Reconciliation", "endpointUrl": "https://example.com/webhooks/pepparedstreetcafe", "endpointStatus": "Active", "eventTypes": [ "transaction.card.captured", "settlement.batch.completed" ], "createdOn": "2026-05-05T14:30:36.759Z", "modifiedOn": "2026-07-10T03:22:47.918Z" } ] } ]
Response
{ "data": [ { "items": [ { "endpointId": "633649fc-9d16-4d1b-98ec-73a3282427fc", "endpointName": "Peppared Street Cafe's Reconciliation", "endpointUrl": "https://example.com/webhooks/pepparedstreetcafe", "endpointStatus": "Active", "eventTypes": [ "transaction.card.captured", "settlement.batch.completed" ], "createdOn": "2026-05-05T14:30:36.759Z", "modifiedOn": "2026-07-10T03:22:47.918Z" } ] } ] }