curl https://api.flux.dev/v1/webhooks \
-H "Authorization: Bearer sk_live_..."
{
"data": [
{
"id": "wh_abc123",
"url": "https://api.yourapp.com/webhooks/flux",
"events": ["order.completed", "user.signup"],
"status": "active",
"created": "2024-01-10T08:00:00Z"
},
{
"id": "wh_def456",
"url": "https://api.yourapp.com/analytics",
"events": ["*"],
"status": "active",
"created": "2024-01-05T12:30:00Z"
}
],
"hasMore": false
}
Retrieve all configured webhooks
curl https://api.flux.dev/v1/webhooks \
-H "Authorization: Bearer sk_live_..."
{
"data": [
{
"id": "wh_abc123",
"url": "https://api.yourapp.com/webhooks/flux",
"events": ["order.completed", "user.signup"],
"status": "active",
"created": "2024-01-10T08:00:00Z"
},
{
"id": "wh_def456",
"url": "https://api.yourapp.com/analytics",
"events": ["*"],
"status": "active",
"created": "2024-01-05T12:30:00Z"
}
],
"hasMore": false
}
curl https://api.flux.dev/v1/webhooks \
-H "Authorization: Bearer sk_live_..."
{
"data": [
{
"id": "wh_abc123",
"url": "https://api.yourapp.com/webhooks/flux",
"events": ["order.completed", "user.signup"],
"status": "active",
"created": "2024-01-10T08:00:00Z"
},
{
"id": "wh_def456",
"url": "https://api.yourapp.com/analytics",
"events": ["*"],
"status": "active",
"created": "2024-01-05T12:30:00Z"
}
],
"hasMore": false
}