Call Notes

Operations related to call notes

Get all call notes

get

Returns a list of call notes with pagination support.

Autorizaciones
Respuestas
200Éxito
application/json
get
GET /api/v1/call-notes HTTP/1.1
Host: api.salescaling.com
x-api-key: YOUR_API_KEY
Accept: */*
{
  "statusCode": 200,
  "count": 1,
  "error": "text",
  "data": {
    "callId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
    "notes": [
      {
        "content": "Customer interested in premium features",
        "smartCategory": {
          "id": "cat123",
          "name": "Customer Interest"
        }
      }
    ]
  }
}

Get call note by ID

get

Returns a call note by ID.

Autorizaciones
Parámetros de ruta
idstringRequerido

Call note ID to retrieve.

Respuestas
200Éxito
application/json
get
GET /api/v1/call-notes/{id} HTTP/1.1
Host: api.salescaling.com
x-api-key: YOUR_API_KEY
Accept: */*
{
  "statusCode": 200,
  "count": 1,
  "error": "text",
  "data": {
    "content": "Customer interested in premium features",
    "smartCategory": {
      "id": "cat123",
      "name": "Customer Interest"
    }
  }
}