GET
/
v2
/
webhooks
List Webhooks
curl --request GET \
  --url https://b2b-api.dev-riseworks.io/v2/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "webhooks": [
      {
        "webhook_nanoid": "<string>",
        "url": "<string>",
        "events": [
          "<string>"
        ],
        "is_active": true,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

company_nanoid
string
required

Unique identifier of the company.

Required string length: 15
team_nanoid
string

Unique identifier of the team, if applicable.

Required string length: 15
cursor
string
limit
integer
Required range: 1 <= x <= 100

Response

200
application/json

Default Response

The response is of type object.