Skip to main content

getById

client.apps.getById(appId: string): Promise<App>

Retrieves a specific application by its ID.

Returns the full App object including its metadata, configuration, and current status.

Parameters

ParameterTypeRequiredDescription
appIdstringYesThe unique identifier of the app

Returns

Promise<App> — A promise that resolves to the App object

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.apps.getById('appId');
console.log(result);