Dossier API – getEntityList

getEntityList is used to get a list of entities.

interface DossierClient {
getEntityList(
references: EntityReference[],
): PromiseResult<
Result<Entity, "BadRequest" | "NotFound" | "NotAuthorized" | "Generic">[],
"Generic"
>;
}

interface EntityReference {
id: string;
}