curl --request PATCH \
--url https://api.caret.so/v1/notes/note_123456789 \
--header 'X-API-Key: <your_api_key>' \
--header 'Content-Type: application/json' \
--data '{
"title": "Updated Meeting Title",
"visibility": "workspace",
"userWrittenNote": "# Meeting Notes\n\nKey discussion points..."
}'
{
"note": {
"id": "note_123456789",
"title": "Updated Meeting Title",
"kind": "online",
"status": "completed",
"createdAt": "2024-01-28T10:00:00Z",
"updatedAt": "2024-01-28T14:30:00Z",
"visibility": "workspace",
"tags": [],
"participants": [],
"totalDurationSec": 3600,
"userWrittenNote": "# Meeting Notes\n\nKey discussion points...",
"enhancedNote": "Meeting summary content...",
"summary": "Meeting summary content...",
"transcripts": [],
"calendarEvent": null,
"inputLanguage": "en",
"translationLanguage": null,
"meetingApp": null
}
}
Update details of a specific note
curl --request PATCH \
--url https://api.caret.so/v1/notes/note_123456789 \
--header 'X-API-Key: <your_api_key>' \
--header 'Content-Type: application/json' \
--data '{
"title": "Updated Meeting Title",
"visibility": "workspace",
"userWrittenNote": "# Meeting Notes\n\nKey discussion points..."
}'
{
"note": {
"id": "note_123456789",
"title": "Updated Meeting Title",
"kind": "online",
"status": "completed",
"createdAt": "2024-01-28T10:00:00Z",
"updatedAt": "2024-01-28T14:30:00Z",
"visibility": "workspace",
"tags": [],
"participants": [],
"totalDurationSec": 3600,
"userWrittenNote": "# Meeting Notes\n\nKey discussion points...",
"enhancedNote": "Meeting summary content...",
"summary": "Meeting summary content...",
"transcripts": [],
"calendarEvent": null,
"inputLanguage": "en",
"translationLanguage": null,
"meetingApp": null
}
}
workspace, public, only-me, private, sharedNote: private is an alias for only-me, shared is an alias for public
curl --request PATCH \
--url https://api.caret.so/v1/notes/note_123456789 \
--header 'X-API-Key: <your_api_key>' \
--header 'Content-Type: application/json' \
--data '{
"title": "Updated Meeting Title",
"visibility": "workspace",
"userWrittenNote": "# Meeting Notes\n\nKey discussion points..."
}'
{
"note": {
"id": "note_123456789",
"title": "Updated Meeting Title",
"kind": "online",
"status": "completed",
"createdAt": "2024-01-28T10:00:00Z",
"updatedAt": "2024-01-28T14:30:00Z",
"visibility": "workspace",
"tags": [],
"participants": [],
"totalDurationSec": 3600,
"userWrittenNote": "# Meeting Notes\n\nKey discussion points...",
"enhancedNote": "Meeting summary content...",
"summary": "Meeting summary content...",
"transcripts": [],
"calendarEvent": null,
"inputLanguage": "en",
"translationLanguage": null,
"meetingApp": null
}
}