Skip to main content
GET
/
v1
/
webhooks
List webhooks
curl --request GET \
  --url https://api.framelane.io/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "url": "<string>",
      "events": [
        "<string>"
      ],
      "enabled": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>",
  "has_more": false
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:20
cursor
string | null

Response

Successful Response

data
WebhookOut · object[]
required
next_cursor
string | null
has_more
boolean
default:false