LogoLogo
  • Introduction to the Ebbot Platform
  • Ebbot Platform
  • Bot basics
    • Scenarios
    • Entities
    • Triggers
    • Training center
  • Scenarios
    • Cards and syntax
      • File Input
      • Text card
      • Input
      • Buttons
      • Image
      • File
      • Carousel
      • Location
      • List
      • Contact Agent
      • Rating request
      • Custom component
      • CoBrowsing
    • Transition
    • Card properties
  • AI Insights
    • Setup and Configuration
    • Using the Insights Dashboard
  • EbbotGPT
    • Knowledge
      • Data source transformer
      • Source types
        • File
        • Website scrape
        • Docx file
        • TOPdesk API
        • Sitevision API
        • SharePoint API
          • Create app with Sites.FullControl.All permission in Azure
          • Ebbot SharePoint Postman Guide
        • Confluence API
    • Configurations
    • Persona
    • GPT Evaluation
    • Embedder models
    • EGPT models
  • Custom vocabulary
  • Tutorials
    • Create your first scenario
      • Select a trigger
      • Add bot responses
  • Data Object
  • Release notes
  • For developers
    • Ebbot SDK
    • Safe Exchange API / Vault
    • Subdomain manager
  • EbbotGPT API
  • Chatbot & Live chat
    • Install chat widget
    • Chats API
    • Chat widget API
    • Datasource API
    • Sales tracking for live chat
    • Webhook
      • Incoming webhooks
      • Outgoing webhooks
    • SMS API
      • Authentication
      • Send SMS
      • Errors
      • Encoding
    • Python components
    • Intent detection (NLP)
  • Product guides
    • Product data feeds
    • Install guide
    • Product guide events
      • Product guide user events
      • Received events
      • Send events
    • API & webhooks
    • GA4 integration
    • Klaviyo integration
  • Messenger marketing
    • Install popup
    • API & webhooks
  • For chat agents
    • Ebbot Chat
      • Settings modal
      • Queue
      • Topbar Stats
      • Menu
        • Power-Ups!
        • Quick Replies
  • INTEGRATIONS
    • Ebbot Live Chat in Zendesk
      • Setup guide
    • Active Directory - SAML
    • Configure SAML in Azure
Powered by GitBook
On this page
  • Get Tables
  • Get data

Was this helpful?

  1. Chatbot & Live chat

Datasource API

Get Tables

GET https://<env>.ebbot.app/v3/api/services/data-sources/:connectionId/tables

This endpoint allows you to get free cakes.

Path Parameters

Name
Type
Description

connectionId

string

ID of the connection for which to return the parameter tables.

Headers

Name
Type
Description

Authentication

string

Authentication token

{
    success: true,
    data: [
        {
            _id: "string",
            name: "string",
            description: "string",
            bot_id: "string",
            connection_id: "string",
            created_at: "string",
            updated_at: "string"
        }
    ]
}
{
    success: false,
    message: "string"
}

Get data

GET https://<env>.ebbot.app/v3/api/services/data-sources/:connectionId/tables/:tableId

Path Parameters

Name
Type
Description

tableId

string

ID of the data table

connectionId

string

ID of the connection

Query Parameters

Name
Type
Description

<field>

string

Any field from the table structure can be passed as a parameter to reduce the search scope.

strict

boolean

Specifies the operator used in the query. AND for strict true, OR for false. If not specified defaults to true

page

integer

Returns the results with an offset of page x limit

limit

integer

Limits the number of results returned. If not specified defaults to 10.

Headers

Name
Type
Description

Authentication

string

Authentication token

{
    success: true,
    data: {
        data: [
            {
                _id: "string",
                name: "string",
                keys: "object",
                data: "array",
                description: "string",
                bot_id: "string",
                connection_id: "string",
                created_at: "string",
                updated_at: "string"
            }
        ],
        meta: {
            count: "number",
            page: "number",
            limit: "number"
        }
    }
        
}
{
    success: false,
    message: "string"
}
PreviousChat widget APINextSales tracking for live chat

Last updated 2 months ago

Was this helpful?