بنقرة واحدة
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.