Update a note
curl --request PATCH \
--url https://app.nex.ai/api/developers/v1/notes/{note_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Updated meeting notes",
"content": "Added action items..."
}
'import requests
url = "https://app.nex.ai/api/developers/v1/notes/{note_id}"
payload = {
"title": "Updated meeting notes",
"content": "Added action items..."
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: 'Updated meeting notes', content: 'Added action items...'})
};
fetch('https://app.nex.ai/api/developers/v1/notes/{note_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.nex.ai/api/developers/v1/notes/{note_id}"
payload := strings.NewReader("{\n \"title\": \"Updated meeting notes\",\n \"content\": \"Added action items...\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<api-key>")
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))
}{
"id": "900",
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001",
"created_by": "developer_api",
"created_at": "2024-01-15T10:00:00Z"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Notes
Update a note
Updates properties of an existing note. All fields are optional.
PATCH
/
v1
/
notes
/
{note_id}
Update a note
curl --request PATCH \
--url https://app.nex.ai/api/developers/v1/notes/{note_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Updated meeting notes",
"content": "Added action items..."
}
'import requests
url = "https://app.nex.ai/api/developers/v1/notes/{note_id}"
payload = {
"title": "Updated meeting notes",
"content": "Added action items..."
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: 'Updated meeting notes', content: 'Added action items...'})
};
fetch('https://app.nex.ai/api/developers/v1/notes/{note_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.nex.ai/api/developers/v1/notes/{note_id}"
payload := strings.NewReader("{\n \"title\": \"Updated meeting notes\",\n \"content\": \"Added action items...\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<api-key>")
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))
}{
"id": "900",
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001",
"created_by": "developer_api",
"created_at": "2024-01-15T10:00:00Z"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Authorizations
API key for authentication (format: "Bearer YOUR_API_KEY")
Path Parameters
Note ID
Body
application/json
Fields to update
Last modified on March 26, 2026
⌘I