Skip to main content
The hostedApps module provides access to hosted app configuration objects managed in your Replyke project.

fetchHostedApp

Fetches the configuration for a hosted app by its ID.
const app = await replyke.hostedApps.fetchHostedApp({ appId: "app_abc123" });
appId
string
required
The hosted app ID.
ReturnsPromise<HostedApp>