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 ... 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.
{
"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.
{
"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:
"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).
{
"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.
Send Message using Gorgias. Requires channel and body_html and ticket_id and sender_address and recipient_address. Returns results based on the executed action.
Set 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.
{
"success": true
} 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).
{
"success": true
} Read LessUpdates Ticket Status OPEN using Gorgias. Requires ticket_id. Returns results based on the executed action.
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.
{
"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 LessUpdate a field in Gorgias. Requires the ticket_id, the numeric field id of the custom field, and the value you want to set the field to.
For information on getting the appropriate Integration credentials, visit the Gorgias site directly.