Endpoint
-
An endpoint allows you to set a URI that can be accessed from an actual web browser when deploying an application built with exaBase Studio.
For example, it refers to the /test part of
https://xxxx.xx/test
.
Endpoint Access URL
- Two types of access URLs are provided for the endpoint: the exaBase Studio domain and the workspace domain.
-
exaBase Studio Domain: The namespace ID and workspace ID are added as subdirectories.
https://studio.{env-id}.studio.exabase.ai/{namespace-id}/{workspace-id}/{endpoint-uri}/
-
Workspace Domain: It includes a hash generated from the namespace ID and workspace ID, making it a unique domain for each workspace. No subdirectories are added except for the URI defined in the endpoint.
https://{workspace-hash}.circuits.{env-id}.studio.exabase.ai/{endpoint-uri}/
-
Applications developed for either the exaBase Studio domain or the workspace domain may not work with the other access URL.
Nodes Connectable to Endpoint
Node Type | Expected Use |
---|---|
Entity | You can write values to an Entity or read values from it. Please refer to API for details. |
SideApp | You can create an interface for accessing SideApp from outside the Circuit. It is also possible to specify the port number of the host computer. |
Pipeline | You can create an endpoint that kicks off a Pipeline. For methods, refer to Endpoint connected to Pipeline. |