cURL
curl --request GET \ --url https://api.bunship.com/api/v1/organizations/{orgId}/webhooks \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": [ { "id": "wh_abc123", "organizationId": "org_cld2abc123def456", "url": "https://example.com/webhooks/bunship", "description": "Production webhook handler", "events": ["member.added", "member.removed", "subscription.updated"], "isActive": true, "createdAt": "2024-01-15T10:00:00Z", "updatedAt": "2024-01-15T10:00:00Z" } ] }
Get all webhook endpoints for the organization
true
Show endpoint properties
curl https://api.bunship.com/api/v1/organizations/org_cld2abc123def456/webhooks \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."