interface GongNodeParameters {
authentication?: "oAuth2" | "accessToken";
call?: { mode: "id" | "list" | "url"; value: string };
filters?:
| {
callIds?: string;
fromDateTime?: string;
primaryUserIds?: {
mode: "id"
| "list";
value: string;
};
toDateTime?: string;
workspaceId?: string;
}
| {
createdFromDateTime?: string;
createdToDateTime?: string;
userIds?: string;
};
limit?: number;
operation?: "get"
| "getAll";
options?:
| {
properties?: (
| "pointsOfInterest"
| "media"
| "brief"
| "publicComments"
| "highlights"
| "keyPoints"
| "callOutcome"
| "outline"
| "parties"
| "structure"
| "topics"
| "trackers"
| "transcript"
)[];
}
| { properties?: ("parties" | "topics")[] };
resource?: "user" | "call";
returnAll?: boolean;
user?: { mode: "id" | "list"; value: string };
}
Properties§
Source§readonly call?: { mode: "id" | "list" | "url"; value: string }
readonly call?: { mode: "id" | "list" | "url"; value: string }
Default: {"mode":"list","value":""}
Source§readonly filters?:
| {
callIds?: string;
fromDateTime?: string;
primaryUserIds?: {
mode: "id"
| "list";
value: string;
};
toDateTime?: string;
workspaceId?: string;
}
| {
createdFromDateTime?: string;
createdToDateTime?: string;
userIds?: string;
}
readonly filters?:
| {
callIds?: string;
fromDateTime?: string;
primaryUserIds?: {
mode: "id"
| "list";
value: string;
};
toDateTime?: string;
workspaceId?: string;
}
| {
createdFromDateTime?: string;
createdToDateTime?: string;
userIds?: string;
}
Default: {}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1}
Default: "accessToken"