Skip to main content
GET
/
webhooks
/
scope
/
{scope}
List webhook subscriptions
curl --request GET \
  --url https://api.zeeg.me/v2/webhooks/scope/{scope} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.zeeg.me/v2/webhooks/scope/{scope}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.zeeg.me/v2/webhooks/scope/{scope}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zeeg.me/v2/webhooks/scope/{scope}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.zeeg.me/v2/webhooks/scope/{scope}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.zeeg.me/v2/webhooks/scope/{scope}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.zeeg.me/v2/webhooks/scope/{scope}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "status": 200,
  "collection": [
    {
      "uuid": "9a39bf60-a6c3-45e7-80cd-2cd36e520861",
      "name": null,
      "description": null,
      "callbackUrl": "https://example.com/webhooks/zeeg",
      "scope": "user",
      "creator": {
        "firstName": "Lena",
        "lastName": "Meier",
        "slug": "lena-meier"
      },
      "events": [
        "invitee.scheduled",
        "invitee.cancelled"
      ],
      "organization": null,
      "apiVersion": null,
      "createdAt": "2026-04-10T08:30:00.000000Z",
      "updatedAt": "2026-04-10T08:30:00.000000Z"
    }
  ]
}
{
"message": "Unauthenticated."
}
{
"success": false,
"status": 404
}

Authorizations

Authorization
string
header
required

Path Parameters

scope
enum<string>
required

The scope to filter webhook subscriptions. Use user for personal webhooks or organization for organization-wide webhooks.

Available options:
user,
organization

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

collection
object[]
Last modified on April 29, 2026