getExpertApplications()
getExpertApplications(
expertId:string):Promise<Application[]>
Defined in: packages/core/src/index.ts:2399
Get applications associated with a specific expert
Parameters
| Parameter | Type | Description |
|---|---|---|
expertId | string | The 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");