원클릭으로
gohighlevel
GoHighLevel integration. Manage Organizations. Use when the user wants to interact with GoHighLevel data.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
GoHighLevel integration. Manage Organizations. Use when the user wants to interact with GoHighLevel data.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | gohighlevel |
| description | GoHighLevel integration. Manage Organizations. Use when the user wants to interact with GoHighLevel data. |
GoHighLevel is an all-in-one marketing and sales platform designed for marketing agencies and small businesses. It provides tools for CRM, email marketing, SMS marketing, website building, and sales funnels. Agencies use it to manage multiple client accounts and automate marketing processes.
Official docs: https://developers.gohighlevel.com/
| Name | Key | Description |
|---|---|---|
| List Contacts | list-contacts | List contacts from GoHighLevel |
| List Campaigns | list-campaigns | Get all campaigns for a location |
| List Workflows | list-workflows | Get all workflows for a location |
| List Calendar Events | list-calendar-events | List events in a calendar within a date range |
| List Calendars | list-calendars | List all calendars for a location in GoHighLevel |
| Get Contact | get-contact | Get a contact by ID from GoHighLevel |
| Get Opportunity | get-opportunity | Get an opportunity by ID from GoHighLevel |
| Get User | get-user | Get a user by their ID |
| Get Appointment | get-appointment | Get an appointment by ID from GoHighLevel |
| Get Conversation | get-conversation | Get a conversation by ID from GoHighLevel |
| Get Pipelines | get-pipelines | Get all pipelines for a location in GoHighLevel |
| Create Contact | create-contact | Create a new contact in GoHighLevel |
| Create Opportunity | create-opportunity | Create a new opportunity/deal in GoHighLevel |
| Create Appointment | create-appointment | Create a new appointment in GoHighLevel |
| Create Note | create-note | Create a note for a contact in GoHighLevel |
| Update Contact | update-contact | Update an existing contact in GoHighLevel |
| Update Opportunity | update-opportunity | Update an existing opportunity in GoHighLevel |
| Update Appointment | update-appointment | Update an existing appointment in GoHighLevel |
| Delete Contact | delete-contact | Delete a contact from GoHighLevel |
| Delete Opportunity | delete-opportunity | Delete an opportunity from GoHighLevel |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json
To pass JSON parameters:
membrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"
When the available actions don't cover your use case, you can send requests directly to the GoHighLevel API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.
membrane request CONNECTION_ID /path/to/endpoint
Common options:
| Flag | Description |
|---|---|
-X, --method | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
-H, --header | Add a request header (repeatable), e.g. -H "Accept: application/json" |
-d, --data | Request body (string) |
--json | Shorthand to send a JSON body and set Content-Type: application/json |
--rawData | Send the body as-is without any processing |
--query | Query-string parameter (repeatable), e.g. --query "limit=10" |
--pathParam | Path parameter (repeatable), e.g. --pathParam "id=123" |
membrane action list --intent=QUERY (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.