Skip to main content
GET
/
profile
/
webhook-endpoints
List webhook endpoints
curl --request GET \
  --url https://developersandbox-api.flutterwave.com/profile/webhook-endpoints \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "<string>",
  "meta": {
    "page_info": {
      "total": 123,
      "current_page": 123,
      "total_pages": 123
    }
  },
  "data": [
    {
      "url": "<string>",
      "secret": "<string>",
      "id": "<string>",
      "supported_event_types": [
        "<string>"
      ],
      "status": "enabled",
      "meta": {},
      "description": "<string>",
      "created_datetime": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Trace-Id
string

A unique identifier to track this operation. It must be between 12 and 255 characters in length.

Required string length: 12 - 255

Response

OK

status
enum<string>
Available options:
success,
failed
message
string
meta
object
data
object[]
Maximum array length: 50