@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
10 lines (9 loc) • 777 B
TypeScript
export declare const integrations: {
search: (options: {
altId: string;
altType: "location";
limit?: number;
offset?: number;
}, authToken: string) => Promise<(import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/payments").PaymentsWLProviderListResponseDTO) | null>;
create: (options: import("../../../types/payments").PaymentsWLProviderCreateDTO, authToken: string) => Promise<import("../../../types/_global").BadRequestDTO | import("../../../types/_global").UnauthorizedDTO | import("../../../types/_global").UnprocessableDTO | import("../../../types/payments").PaymentsIntegrationProviderSchema> | null;
};