← Back to listing
GET/api/v1/call-notes

Get all call notes

Returns a list of call notes with pagination support.

Authentication

Send your API key in the x-api-key header.

x-api-keybearer

Parameters

limit

query · number

Number of items per page (default: 10)
page

query · number

Page number for pagination (default: 1)

Responses

200

PublicApiGetCallNotesResponseDto

statusCoderequired

number

countrequired

number

errorrequired

string

datarequired

PublicApiCallNotesResponseDto

Example response

json
{
  "statusCode": 200,
  "count": 0,
  "error": null,
  "data": {
    "callId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
    "notes": [
      {
        "content": "Customer interested in premium features",
        "smartCategory": {
          "id": "cat123",
          "name": "Customer Interest"
        }
      }
    ]
  }
}
401Unauthorized - missing or invalid API key or Bearer token