UNPKG

@cllbk/ghl

Version:

A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.

20 lines (18 loc) 428 B
import { followers } from "./followers"; import get from "./get"; import search from "./search"; import create from "./create"; import update from "./update"; import updateStatus from "./updateStatus"; import upsert from "./upsert"; import del from "./delete"; export const opportunities = { get, // search, /** Route not yet supported by IAM */ create, update, updateStatus, upsert, delete: del, followers, };