Create a note
curl --request POST \
--url https://app.nex.ai/api/developers/v1/notes \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001"
}
'import requests
url = "https://app.nex.ai/api/developers/v1/notes"
payload = {
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: 'Meeting notes', content: 'Discussed Q3 roadmap...', entity_id: '1001'})
};
fetch('https://app.nex.ai/api/developers/v1/notes', 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"
payload := strings.NewReader("{\n \"title\": \"Meeting notes\",\n \"content\": \"Discussed Q3 roadmap...\",\n \"entity_id\": \"1001\"\n}")
req, _ := http.NewRequest("POST", 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>"
}Notes
Create a note
Creates a new note, optionally associated with a record
POST
/
v1
/
notes
Create a note
curl --request POST \
--url https://app.nex.ai/api/developers/v1/notes \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001"
}
'import requests
url = "https://app.nex.ai/api/developers/v1/notes"
payload = {
"title": "Meeting notes",
"content": "Discussed Q3 roadmap...",
"entity_id": "1001"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({title: 'Meeting notes', content: 'Discussed Q3 roadmap...', entity_id: '1001'})
};
fetch('https://app.nex.ai/api/developers/v1/notes', 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"
payload := strings.NewReader("{\n \"title\": \"Meeting notes\",\n \"content\": \"Discussed Q3 roadmap...\",\n \"entity_id\": \"1001\"\n}")
req, _ := http.NewRequest("POST", 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>"
}Authorizations
API key for authentication (format: "Bearer YOUR_API_KEY")
Body
application/json
Note to create
Last modified on February 17, 2026
⌘I