Skip to main content
POST
/
copilot
/
notes
Create a new copilot note
curl --request POST \
  --url https://core.ravenna.ai/api/copilot/notes \
  --header 'Content-Type: application/json' \
  --header 'x-ravenna-api-token: <api-key>' \
  --data '{
  "content": "<string>",
  "category": "GENERAL"
}'
{
  "id": "<string>",
  "content": "<string>",
  "category": "GENERAL",
  "userId": "<string>",
  "workspaceId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

x-ravenna-api-token
string
header
required

Body

application/json
content
string
required
Minimum length: 1
category
enum<string>
required
Available options:
GENERAL,
TICKETING,
WORKFLOWS,
ANALYTICS

Response

Successful response

id
string
required
content
string
required
category
enum<string>
required
Available options:
GENERAL,
TICKETING,
WORKFLOWS,
ANALYTICS
userId
string
required
workspaceId
string
required
createdAt
string
required
updatedAt
string
required