Meeting Notes

Operations related to meeting notes

Get all meeting notes

get

Returns a list of meeting notes with pagination support.

Autorizaciones
Respuestas
200Éxito
application/json
get
GET /api/v1/meeting-notes HTTP/1.1
Host: api.salescaling.com
x-api-key: YOUR_API_KEY
Accept: */*
{
  "statusCode": 200,
  "count": 1,
  "error": "text",
  "data": [
    {
      "id": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
      "tag": "Important",
      "content": "Discussed project risks and mitigation strategies",
      "priority": "high",
      "meetingId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
      "smartCategoryId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
      "isManual": true,
      "startTimestamp": 0,
      "endTimestamp": 60
    }
  ]
}

Get meeting note by ID

get

Returns a meeting note by ID.

Autorizaciones
Parámetros de ruta
idstringRequerido

Meeting ID to delete.

Respuestas
200Éxito
application/json
get
GET /api/v1/meeting-notes/{id} HTTP/1.1
Host: api.salescaling.com
x-api-key: YOUR_API_KEY
Accept: */*
{
  "statusCode": 200,
  "count": 1,
  "error": "text",
  "data": {
    "id": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
    "tag": "Important",
    "content": "Discussed project risks and mitigation strategies",
    "priority": "high",
    "meetingId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
    "smartCategoryId": "5516cd47-2bd0-4f4f-adc2-22524e54ba4d",
    "isManual": true,
    "startTimestamp": 0,
    "endTimestamp": 60
  }
}