GET /v1/kcbot/{kcId}

Retrieves a KC Bot with the given Id

Examples:

URI Results
GET /v1/kcbot/{kcId} Get kc with id {kcId}.

Path parameters

  • kcId string Required

    KC Bot id

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • createdBy object
      Hide createdBy attributes Show createdBy attributes object
      • id string
      • name string
    • createdDate integer(int64)
    • defaultLanguage string
    • description string
    • environments array[string]
    • id string
    • languages array[object]
      Hide languages attributes Show languages attributes object
      • languageCode string
      • translated boolean
    • modifiedBy object
      Hide modifiedBy attributes Show modifiedBy attributes object
      • id string
      • name string
    • modifiedDate integer(int64)
    • name string
    • priority integer(int32)
    • productId string
    • productName string
    • status string
  • 400

    Bad request

  • 401

    Unauthorized or bad API Key

  • 429

    Rate limit exceeded

GET /v1/kcbot/{kcId}
curl \
 --request GET 'https://api.aptrinsic.com/v1/kcbot/{kcId}'
Response examples (200)
{
  "createdBy": {
    "id": "string",
    "name": "string"
  },
  "createdDate": 42,
  "defaultLanguage": "string",
  "description": "string",
  "environments": [
    "string"
  ],
  "id": "string",
  "languages": [
    {
      "languageCode": "string",
      "translated": true
    }
  ],
  "modifiedBy": {
    "id": "string",
    "name": "string"
  },
  "modifiedDate": 42,
  "name": "string",
  "priority": 42,
  "productId": "string",
  "productName": "string",
  "status": "string"
}