About the Integration API
The Integration API is available to all of your containers when running from a Replicated deployment. This API is where you connect to your customers on-prem utilities.
The Integration API will be available to any container in your app at a custom, dynamic endpoint. To discover the endpoint from any container, simply query the environment variable named REPLICATED_INTEGRATIONAPI
.
Discovering The Integration API Endpoint
Go
import (
"os"
)
// Get the Replicated Integration API Endpoint
endpoint = os.Getenv("REPLICATED_INTEGRATIONAPI")
Updated 3 months ago