Skip to main content

Get history entry

Returns metadata on an event in the system.

Function

getHistoryEntry(historyId: HistoryListItem["id"]): Promise<HistoryListItem>;

Parameters

Return value

export interface HistoryListItem {
id: string;
createdDate: string;
action: HistoryActionEnum;
entityId?: string;
entityType: HistoryEntityTypeEnum;
organisationId: string;
metadata?: HistoryMetadata | null;
}