Notes
Update a Note
Update the content of an existing note attached to a scheduled event.
PUT
/
notes
/
{id}
Update a note
curl --request PUT \
--url https://api.zeeg.me/v2/notes/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>"
}
'import requests
url = "https://api.zeeg.me/v2/notes/{id}"
payload = { "note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
note: '<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>'
})
};
fetch('https://api.zeeg.me/v2/notes/{id}', 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/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'note' => '<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zeeg.me/v2/notes/{id}"
payload := strings.NewReader("{\n \"note\": \"<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.zeeg.me/v2/notes/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"note\": \"<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeeg.me/v2/notes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"note\": \"<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"data": {
"id": 42,
"uuid": "vIgm8IvNzD",
"note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</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:45:00.000000Z",
"createdAt": "2026-04-15T10:32:00.000000Z"
}
}{
"message": "Unauthenticated."
}{
"error": "Entry for Note not found"
}{
"success": false,
"message": "Note not found",
"status": 500
}Authorizations
Path Parameters
The UUID or integer ID of the note.
Body
application/json
The updated note content. Supports basic HTML formatting (e.g. , ,
).
Maximum string length:
500Response
OK
Example:
true
Example:
200
Hide child attributes
Hide child attributes
Short alphanumeric identifier
Example:
"2lZb5IpExv"
Zeeg event identifier
Example:
"zg-R69bc06d3ac712"
Hide child attributes
Hide child attributes
Zeeg event identifier
Example:
"zg-R69bc06d3ac712"
Timestamp of last update
Timestamp of creation
Last modified on April 29, 2026
⌘I
Update a note
curl --request PUT \
--url https://api.zeeg.me/v2/notes/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>"
}
'import requests
url = "https://api.zeeg.me/v2/notes/{id}"
payload = { "note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
note: '<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>'
})
};
fetch('https://api.zeeg.me/v2/notes/{id}', 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/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'note' => '<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zeeg.me/v2/notes/{id}"
payload := strings.NewReader("{\n \"note\": \"<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.zeeg.me/v2/notes/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"note\": \"<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeeg.me/v2/notes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"note\": \"<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"data": {
"id": 42,
"uuid": "vIgm8IvNzD",
"note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</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:45:00.000000Z",
"createdAt": "2026-04-15T10:32:00.000000Z"
}
}{
"message": "Unauthenticated."
}{
"error": "Entry for Note not found"
}{
"success": false,
"message": "Note not found",
"status": 500
}