Skip to main content

getExpertApplications()

getExpertApplications(expertId: string): Promise<Application[]>

Defined in: packages/core/src/index.ts:2399

Get applications associated with a specific expert

Parameters

ParameterTypeDescription
expertIdstringThe unique identifier of the expert

Returns

Promise<Application[]>

Array of applications for the expert

Throws

401 - Not authenticated

Throws

404 - Expert not found

Example

import { getExpertApplications } from "@cpod/sdk";

const apps = await getExpertApplications("expert-123");