Gorgias (Basic Auth)
Use Gorgias (Basic Auth) to manage customers, tickets, messages, tags, users, integrations, and account support workflows.
认证方式
| 方式 | 底层类型 | 状态 | 说明 |
|---|---|---|---|
| OAuth 2.0 | oauth2 | available | — |
| Basic Auth | basic | available | — |
调用示例
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "GORGIAS_BASIC_CREATE_CUSTOMER", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("GORGIAS_BASIC_CREATE_CUSTOMER", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute GORGIAS_BASIC_CREATE_CUSTOMER --data '{ }'Tool 目录
可用 Tools
15 个可调用操作
Create a customerGORGIAS_BASIC_CREATE_CUSTOMERCreate a customer需要连接
Create a customer
认证
需要 Connected AccountTags
Create a tagGORGIAS_BASIC_CREATE_TAGCreate a tag需要连接
Create a tag
认证
需要 Connected AccountTags
Create a ticketGORGIAS_BASIC_CREATE_TICKETCreate a ticket需要连接
Create a ticket
认证
需要 Connected AccountTags
Create a messageGORGIAS_BASIC_CREATE_TICKET_MESSAGECreate a message and either: - not send it if the attribute `sent_datetime` is filled. If you import a message that was already sent, make sure to set this value. - send it to the recipients if the attribute `sent_datetime` is empty. - add it to the ticket as an internal note if you specified this channel. Internal notes are not sent to your customers. When a message is created, it does not mean that this one has been sent because the creation and sending process are decoupled. Messages are basically sent asynchronously. Once a message has been sent, Gorgias will automatically update the message to fill the time when it was sent (`sent_datetime`).需要连接
Create a message and either: - not send it if the attribute `sent_datetime` is filled. If you import a message that was already sent, make sure to set this value. - send it to the recipients if the attribute `sent_datetime` is empty. - add it to the ticket as an internal note if you specified this channel. Internal notes are not sent to your customers. When a message is created, it does not mean that this one has been sent because the creation and sending process are decoupled. Messages are basically sent asynchronously. Once a message has been sent, Gorgias will automatically update the message to fill the time when it was sent (`sent_datetime`).
认证
需要 Connected AccountTags
Retrieve your accountGORGIAS_BASIC_GET_ACCOUNTRetrieve your account需要连接
Retrieve your account
认证
需要 Connected AccountTags
Retrieve a customerGORGIAS_BASIC_GET_CUSTOMERRetrieve a customer需要连接
Retrieve a customer
认证
需要 Connected AccountTags
Retrieve a ticketGORGIAS_BASIC_GET_TICKETRetrieve a ticket需要连接
Retrieve a ticket
认证
需要 Connected AccountTags
List customersGORGIAS_BASIC_LIST_CUSTOMERSList customers, paginated, and ordered by their name (alphabetical order).需要连接
List customers, paginated, and ordered by their name (alphabetical order).
认证
需要 Connected AccountTags
List integrationsGORGIAS_BASIC_LIST_INTEGRATIONSList integrations matching the given parameters, paginated.需要连接
List integrations matching the given parameters, paginated.
认证
需要 Connected AccountTags
List messagesGORGIAS_BASIC_LIST_MESSAGESList messages matching the given parameters, paginated.需要连接
List messages matching the given parameters, paginated.
认证
需要 Connected AccountTags
List tagsGORGIAS_BASIC_LIST_TAGSList tags matching the given parameters, paginated, and ordered.需要连接
List tags matching the given parameters, paginated, and ordered.
认证
需要 Connected AccountTags
List ticketsGORGIAS_BASIC_LIST_TICKETSList tickets, paginated and ordered by the attribute of the given view.需要连接
List tickets, paginated and ordered by the attribute of the given view.
认证
需要 Connected AccountTags
List usersGORGIAS_BASIC_LIST_USERSList users, paginated and ordered by their name (alphabetical order).需要连接
List users, paginated and ordered by their name (alphabetical order).
认证
需要 Connected AccountTags
Update a customerGORGIAS_BASIC_UPDATE_CUSTOMERUpdate a customer需要连接
Update a customer
认证
需要 Connected AccountTags
Update a ticketGORGIAS_BASIC_UPDATE_TICKETUpdate a ticket需要连接
Update a ticket
认证
需要 Connected AccountTags