Skip to main content
GET
/
copilot
/
notes
List copilot notes for the current user and workspace
curl --request GET \
  --url https://core.ravenna.ai/api/copilot/notes \
  --header 'x-ravenna-api-token: <api-key>'
[
  {
    "id": "<string>",
    "content": "<string>",
    "category": "GENERAL",
    "userId": "<string>",
    "workspaceId": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Authorizations

x-ravenna-api-token
string
header
required

Query Parameters

category
enum<string>
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