GET
/
client
/
events
/
getAllEvents
Get all webhook
curl --request GET \
  --url https://v2.flabs.in/client/events/getAllEvents \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Subscribed events fetched successfully",
  "data": [
    {
      "_id": "<unique id>",
      "events": [
        "bill.completed"
      ],
      "protocol": "https",
      "createdAt": "2025-08-21T08:57:49.700Z",
      "updatedAt": "2025-08-21T08:57:49.700Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token obtained from the authentication endpoint

Response

200
application/json

Successfully retrieved webhook

The response is of type object.