@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
14 lines (12 loc) • 482 B
text/typescript
export type WorkflowsSchema = {
id?: string /** The workflow ID */;
name?: string /** The name */;
status?: string /** The status */;
version?: number /** The version */;
createdAt?: string /** The creation date (2021-05-26T11:33:49.000Z) */;
updatedAt?: string /** The update date (2021-05-26T11:33:49.000Z) */;
locationId?: string /** The location ID */;
};
export type WorkflowsSearchResponseDTO = {
workflows: WorkflowsSchema[] /** The list of workflows */;
};