Adds an internal note to a Gorgias support ticket that only agents can see, perfect for team communication and case documentation.
This integration allows you t... Read More
Adds an internal note to a Gorgias support ticket that only agents can see, perfect for team communication and case documentation.
This integration allows you to add internal-only comments to existing Gorgias support tickets. These comments are visible only to your support team members and help with case management, documentation, and internal communication about customer issues. The comment appears in the ticket timeline but remains hidden from customers.
Returns confirmation details of the created internal message including message_outcome (success status), message_id (unique identifier for the comment), ticket_id (original ticket ID), from_agent (confirmation it’s from an agent), message_body (the comment text), and sender object containing agent details like user_id, email, name, firstname, and lastname.
Example Output:
{
"message_outcome": "Ticket created successfuly",
"message_id": 389472851,
"ticket_id": 67894523,
"from_agent": true,
"message_body": "Customer confirmed delivery address - proceed with replacement shipment",
"sender": {
"user_id": 892456731,
"email": "sarah.johnson@supportteam.com",
"name": "Sarah Johnson",
"firstname": "Sarah",
"lastname": "Johnson"
}
} Read LessAdds one or more tags to an existing Gorgias support ticket for better organization and workflow automation.
This integration attaches tags to a Gorgias ticket ... Read More
Adds one or more tags to an existing Gorgias support ticket for better organization and workflow automation.
This integration attaches tags to a Gorgias ticket to help your support team categorize and organize tickets. Tags like “refund”, “shipping_delay”, or “vip” make it easier to filter tickets, trigger automated workflows, and generate reports on ticket types and resolution patterns.
Returns a confirmation object indicating whether the tags were successfully added to the ticket. The response includes a success boolean and a descriptive message.
Example Output:
{
"success": true,
"message": "tag added"
} Read LessAssigns a Gorgias support ticket to a specific team and removes any individual agent assignment.
This integration transfers ownership of a Gorgias support ticke... Read More
Assigns a Gorgias support ticket to a specific team and removes any individual agent assignment.
This integration transfers ownership of a Gorgias support ticket from an individual agent (if assigned) to a designated team. This is useful for redistributing workload, escalating tickets to specialized teams, or ensuring tickets are handled by the appropriate department rather than a specific person.
Returns a simple status object indicating whether the ticket assignment was completed successfully. The response contains a success field that shows true when the ticket was successfully assigned to the team, or false if the assignment failed.
Example Output:
{
"success": true
} Read LessChecks if any support agents are currently online and available in your Gorgias helpdesk.
This integration queries your Gorgias helpdesk to determine if any sup... Read More
Checks if any support agents are currently online and available in your Gorgias helpdesk.
This integration queries your Gorgias helpdesk to determine if any support agents are currently online and available to handle customer inquiries. It’s useful for routing decisions, displaying availability status to customers, or triggering automated workflows based on agent presence.
This tool requires no input parameters – it automatically checks all agents in your Gorgias account.
Returns a simple availability status message indicating whether agents are currently online. The response will be one of two possible outcomes:
Example Output:
"Agents ARE available"
or
"Agents ARE NOT available."Read Less
Creates New Open Ticket using Gorgias. No inputs are required. Returns confirmation of creation, including the new record’s ID and details.
Retrieves Customer by ID using Gorgias. Requires customer_id. Returns results based on the executed action.
Retrieves Customer Tickets using Gorgias. Requires customer_id. Returns results based on the executed action.
Retrieves macro by ID using Gorgias. Requires macro_id. Returns the requested data record(s) with all available details.
Retrieves Ticket Messages using Gorgias. Requires ticket_id. Returns results based on the executed action.
Retrieves all tags associated with a specific support ticket in Gorgias.
This integration fetches all the tags that have been applied to a specific support tick... Read More
Retrieves all tags associated with a specific support ticket in Gorgias.
This integration fetches all the tags that have been applied to a specific support ticket in your Gorgias helpdesk. Tags help categorize and organize tickets by topics like “urgent”, “refund”, “product_issue”, or custom categories your team uses for workflow management.
Returns an array of tag objects applied to the ticket. Each tag includes details like id (unique tag identifier), name (tag label), usage (how many times this tag has been used across all tickets), decoration (display color), description (optional tag description), created_datetime (when the tag was first created), and uri (API reference path).
Example Output:
{
"data": [
{
"id": 892547,
"uri": "/api/tags/892547/",
"name": "billing_inquiry",
"usage": 15423,
"decoration": {
"color": "#3fa8e1"
},
"description": null,
"created_datetime": "2023-04-15T14:22:18.045821+00:00",
"deleted_datetime": null
},
{
"id": 734892,
"uri": "/api/tags/734892/",
"name": "priority",
"usage": 8756,
"decoration": {
"color": "#ff6b35"
},
"description": "High priority customer issue",
"created_datetime": "2023-01-08T09:15:42.238195+00:00",
"deleted_datetime": null
}
]
} Read LessRetrieve Ticket using Gorgias. Requires ticket_id. Returns results based on the executed action.
Search Customers by Email using Gorgias. Requires customer_email. Returns results based on the executed action.
Search Customers by Name using Gorgias. Requires customer_name. Returns results based on the executed action.
Sends a message to a customer through an existing Gorgias support ticket via email or other communication channels.
This integration allows you to send replies ... Read More
Sends a message to a customer through an existing Gorgias support ticket via email or other communication channels.
This integration allows you to send replies and messages to customers through Gorgias support tickets. You can send formatted HTML messages via email or other channels like chat, social media, or SMS, helping your support team respond to customer inquiries directly from your workflow.
Returns a complete message object containing the sent message details including id (unique message identifier), ticket_id, channel, body_html (the sent content), sender and receiver information with names and contact details, source with from/to addresses, created_datetime (when the message was created), and from_agent status.
Example Output:
{
"id": 1587392847,
"ticket_id": 789456123,
"channel": "email",
"body_html": "
“, “sender”: { “id”: 284756391, “name”: “Support Agent”, “email”: “support@mystore.gorgias.io”, “firstname”: “Support”, “lastname”: “Agent” }, “receiver”: { “id”: 1789234567, “name”: “Jane Smith”, “email”: “jane.smith@email.com”, “firstname”: “Jane”, “lastname”: “Smith” }, “source”: { “from”: { “address”: “support@mystore.com” }, “to”: [{ “address”: “jane.smith@email.com” }], “type”: “email” }, “from_agent”: true, “created_datetime”: “2024-01-19T14:32:18.147820+00:00” }
Read LessSet Ticket Tags using Gorgias. Requires new_tags and ticket_id. Returns results based on the executed action.
Removes the assigned agent from a Gorgias support ticket, making it available for reassignment to other team members.
This integration unassigns a support ticke... Read More
Removes the assigned agent from a Gorgias support ticket, making it available for reassignment to other team members.
This integration unassigns a support ticket from its currently assigned agent in Gorgias. When executed, it removes the agent assignment from the specified ticket, allowing the ticket to be picked up by other available agents or reassigned through your team’s workflow processes.
Returns a simple success indicator showing whether the ticket was successfully unassigned. The response contains a success boolean field that confirms the unassignment operation completed properly.
Example Output:
{
"success": true
} Read LessUpdates the value of a specific custom field in a Gorgias support ticket.
This integration allows you to modify custom field values within Gorgias tickets, enab... Read More
Updates the value of a specific custom field in a Gorgias support ticket.
This integration allows you to modify custom field values within Gorgias tickets, enabling you to categorize, track, or update ticket metadata for better organization and workflow management. You can set values like ticket status, priority levels, team assignments, or any other custom classifications your support team uses.
Returns the complete updated Gorgias ticket object containing all ticket information including the modified custom field. Key fields include id, subject, status, customer details, messages array, custom_fields with the updated values, assignee_team, priority, and various datetime stamps for tracking ticket lifecycle events.
Example Output:
{
"id": 88313846,
"subject": "Re: Your Order #9296872 is confirmed",
"status": "open",
"customer": {
"id": 720419636,
"name": "John Smith",
"email": "john.smith@example.com"
},
"custom_fields": {
"127300": {
"id": 127300,
"value": "No-Reply Needed::Kodif"
}
},
"assignee_team": {
"id": 3427,
"name": "Emails"
},
"priority": "low",
"created_datetime": "2026-03-15T05:46:52+00:00",
"updated_datetime": "2026-03-15T05:48:09.994049+00:00"
} Read LessUpdates a Gorgias support ticket’s status to closed, marking the issue as resolved.
This integration closes an existing Gorgias support ticket by changing... Read More
Updates a Gorgias support ticket’s status to closed, marking the issue as resolved.
This integration closes an existing Gorgias support ticket by changing its status to “closed”. Use this when a customer’s issue has been fully resolved and no further action or follow-up is required. Once closed, the ticket will be marked as complete in your Gorgias dashboard.
Returns a simple confirmation object indicating whether the ticket was successfully closed. The response contains a success field that shows true if the ticket was properly updated to closed status, or false if the operation failed (such as when the ticket ID doesn’t exist or is already closed).
Example Output:
{
"success": true
} Read LessUpdates Ticket Status OPEN using Gorgias. Requires ticket_id. Returns results based on the executed action.
For information on getting the appropriate Integration credentials, visit the Gorgias site directly.