n8n-nodes-linkupapi
Version:
n8n node for LINKUP API - Complete LinkedIn automation with 100% API coverage and full documentation
13 lines (12 loc) • 327 B
TypeScript
export interface LinkupCredentials {
apiKey: string;
email?: string;
password?: string;
country?: string;
loginToken?: string;
}
export interface RequestBody {
[key: string]: any;
}
export declare const LINKUP_API_BASE_URL = "https://api.linkupapi.com/v1";
export declare const NODE_VERSION = "2.4.31";