gohl
Version:
Go Highlevel Node Js ease of use library implementation to their API
17 lines (16 loc) • 413 B
TypeScript
export interface AuthData {
access_token: string;
locationId?: string;
companyId?: string;
refresh_token?: string;
expires_in?: number;
userType?: string;
useAPIKey?: boolean;
baseurl?: string;
scope?: "Company" | "Location" | string;
headers?: {
Version: "2021-04-15" | string;
Authorization?: string;
Accept: 'application/json' | string;
};
}