Skip to main content
GET
/
notes
/
event
/
{uuid}
List notes by event
curl --request GET \
  --url https://api.zeeg.me/v2/notes/event/{uuid} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.zeeg.me/v2/notes/event/{uuid}"

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/notes/event/{uuid}', 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/notes/event/{uuid}",
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/notes/event/{uuid}"

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/notes/event/{uuid}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.zeeg.me/v2/notes/event/{uuid}")

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,
  "list": [
    {
      "id": 42,
      "uuid": "vIgm8IvNzD",
      "note": "<p>Sophie prefers afternoon slots. Follow up about enterprise plan.</p>",
      "eventUuid": "zg-O69bac566950c6",
      "crmRecords": null,
      "event": {
        "UUID": "zg-O69bac566950c6",
        "startAt": "2026-04-15T14:00:00.000000Z",
        "endAt": "2026-04-15T14:30:00.000000Z",
        "title": "30-Minute Discovery Call",
        "duration": 30,
        "eventType": {
          "title": "30-Minute Discovery Call",
          "slug": "30-minute-discovery-call"
        }
      },
      "creator": {
        "firstName": "Lena",
        "lastName": "Meier",
        "slug": "lena-meier",
        "avatar": null
      },
      "updatedAt": "2026-04-15T10:32:00.000000Z",
      "createdAt": "2026-04-15T10:32:00.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

uuid
string<uuid>
required

The UUID of the event.

Example:

"2lZb5IpExv"

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

list
object[]
Last modified on April 29, 2026