Documentation Index

Fetch the complete documentation index at: https://developer.comm100.com/llms.txt

Use this file to discover all available pages before exploring further.

Preview

Prev Next

Preview

Preview JSON Format

Preview is represented as simple flat JSON objects with the following keys:

Name Type Description
entityName string
data string
id guid

Get the list of Previews

GET kb/previews

  • Parameters:

No Parameters

  • Response:

An array of Preview

  • Example

Sample Request:

curl https://api11.comm100.io/v4/kb/previews \ 
    -X 'GET' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

[
  {
      "entityName": "",
      "data": "",
      "id": "04669ee3-1dd5-4558-bc42-412a9426b4fa"
  }
] 

Get a single Preview

GET kb/previews/{id}

  • Parameters:

No Parameters

  • Response:

Preview

  • Example

Sample Request:

curl https://api11.comm100.io/v4/kb/previews/04669ee3-1dd5-4558-bc42-412a9426b4fa \ 
    -X 'GET' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

{
  "entityName": "",
  "data": "",
  "id": "04669ee3-1dd5-4558-bc42-412a9426b4fa"
} 

Create a new Preview

POST kb/previews

  • Parameters:

Name Type in Required Description
entityName string body yes
data string body yes
  • Response:

Preview

  • Example

Sample Request:

curl https://api11.comm100.io/v4/kb/previews \ 
    -X 'POST' \ 
    -H 'Authorization: Bearer {access_token}' \ 
    -H 'Content-Type: application/json' \ 
    -D '{"entityName":"","data":""}' 

Response:

HTTP/1.1 201 Created

{
  "entityName": "",
  "data": "",
  "id": "04669ee3-1dd5-4558-bc42-412a9426b4fa"
} 

Update the Preview

PUT kb/previews/{id}

  • Parameters:

Name Type in Required Description
entityName string body yes
data string body yes
  • Response:

Preview

  • Example

Sample Request:

curl https://api11.comm100.io/v4/kb/previews/04669ee3-1dd5-4558-bc42-412a9426b4fa \ 
    -X 'PUT' \ 
    -H 'Authorization: Bearer {access_token}' \ 
    -H 'Content-Type: application/json' \ 
    -D '{"entityName":"","data":""}' 

Response:

HTTP/1.1 200 OK

{
  "entityName": "",
  "data": "",
  "id": "04669ee3-1dd5-4558-bc42-412a9426b4fa"
} 

Remove the Preview

DELETE kb/previews/{id}

  • Parameters:

No Parameters

  • Response:

No Content

  • Example

Sample Request:

curl https://api11.comm100.io/v4/kb/previews/04669ee3-1dd5-4558-bc42-412a9426b4fa \ 
    -X 'DELETE' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 204 No Content

Copyright © 2026 Comm100 Network Corporation. All Rights Reserved.