@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
7 lines (6 loc) • 554 B
TypeScript
import { BadRequestDTO, UnauthorizedDTO, UnprocessableDTO } from "../../../types/_global";
import type { CalendarGetCreateUpdateNoteSuccessfulResponseDto, CalendarEventDTO } from "../../../types/calendars";
import { ContactNotesDTO } from "../../../types/contacts";
type ResponseTypes = CalendarGetCreateUpdateNoteSuccessfulResponseDto | BadRequestDTO | UnauthorizedDTO | UnprocessableDTO;
declare const create: (appointmentId: CalendarEventDTO["id"], options: ContactNotesDTO, authToken: string) => Promise<ResponseTypes> | null;
export default create;