Skip to content

Function: getForgeAppProperty()

ts
function getForgeAppProperty(client, parameters): Promise<{
[key: string]: unknown;
  key?: string;
  value?: Record<string, any>;
}>;

Defined in: src/v2/api/appProperties.ts:36

Gets a Forge app property by property key. This API can only be accessed using asApp() requests from Forge.

Parameters

ParameterTypeDescription
clientClient-
parameters{ propertyKey: string; }-
parameters.propertyKeystringThe key of the property

Returns

Promise&lt;{ [key: string]: unknown; key?: string; value?: Record&lt;string, any>; }>