Smart Categories

Operations related to smart categories

Get all smart categories

get

Returns a list of smart categories with pagination support.

Autorizaciones
Respuestas
200Éxito
application/json
get
GET /api/v1/smart-categories 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",
      "name": "Risks",
      "description": "Identifies and extracts notes related to project risks",
      "examples": [
        "Project timeline risks",
        "Budget constraints"
      ],
      "type": "videocall",
      "createdAt": "2024-04-19T12:00:00Z",
      "updatedAt": "2024-04-19T12:00:00Z"
    }
  ]
}

Get smart category by ID

get

Returns a smart category by ID.

Autorizaciones
Parámetros de ruta
idstringRequerido
Respuestas
200Éxito
application/json
get
GET /api/v1/smart-categories/{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",
    "name": "Risks",
    "description": "Identifies and extracts notes related to project risks",
    "examples": [
      "Project timeline risks",
      "Budget constraints"
    ],
    "type": "videocall",
    "createdAt": "2024-04-19T12:00:00Z",
    "updatedAt": "2024-04-19T12:00:00Z"
  }
}