GET
/
v2
/
webhook_subscriptions
curl --request GET \
  --url https://thirdparty.qonto.com/v2/webhook_subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "subscriptions": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "organization_id": "123e4567-e89b-12d3-a456-426614174000",
      "membership_id": "123e4567-e89b-12d3-a456-426614174000",
      "callback_url": "https://api.partner.com/webhooks/qonto",
      "types": [
        "v1/transactions",
        "v1/organizations",
        "v1/memberships",
        "v1/consent-revocations"
      ],
      "description": "Production webhook for transactions",
      "created_at": "2025-01-24T10:55:00Z",
      "updated_at": "2025-01-24T10:55:00Z"
    }
  ],
  "meta": {
    "current_page": 2,
    "next_page": 3,
    "prev_page": 1,
    "total_pages": 11,
    "total_count": 210,
    "per_page": 20
  }
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Query Parameters

per_page
integer
default:100

Number of items to return per page (1-100)

Required range: 1 <= x <= 100
page
integer
default:1

Page number to return

Required range: x >= 1

Response

200
application/json
Webhook subscriptions retrieved successfully

The response is of type object.