## fetchVersionManifest() function

Fetches the manifest for a given Medplum release version.

**Signature:**

```typescript
export declare function fetchVersionManifest(appName: string, version?: string, params?: Record<string, string>): Promise<ReleaseManifest>;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| appName | string | The name of the app to fetch the manifest for. |
| version | string | _(Optional)_ The version to fetch. If no `version` is provided, defaults to the `latest` version. |
| params | Record<string, string> | _(Optional)_ An optional list of key-value pairs to be appended to the URL query string. |

**Returns:**

Promise< [ReleaseManifest](/content/docs/sdk/core.releasemanifest) >

- The manifest for the specified or latest version.

- [fetchVersionManifest() function](/content/docs/sdk/core.fetchversionmanifest#fetchversionmanifest-function/index.html)
- [Parameters](/content/docs/sdk/core.fetchversionmanifest#parameters/index.html)
