Extensions

In this article we will talk about EDDI's extensions.

EDDI's extensions are the features that your current instance of EDDI is supporting, the latter are used in the process of configuring/developing a Chatbot.

The list of extensions will allow you to have an overview of what is enabled in your current instance of EDDI, the list can be retrieved by calling the API endpoint below.

Note All EDDI's resources start with eddi://, this is used to distinguish if the resource is an EDDI extension, e.g : callbacks, httpcalls, outputsets, bot packages, etc..

Extensions REST API Endpoint

Element

Value

HTTP Method

GET

API Endpoint

/extensionstore/extensions

Model

[
  {
    "type": "string",
    "displayName": "string",
    "configs": {},
    "extensions": {}
  }
]

Description of the model

Element

Value

type

(String) The type of the extension

displayName

(String) A given name to the extension

configs

(Object) Configuration of the extension

extensions

(Object) Extensions of the extension

Example

More about regular dictionaries can be found here.

Request URL

GET http://localhost:7070/extensionstore/extensions

Response Body

Response Code

200

Response Headers

Last updated

Was this helpful?