Gorgias Get Ticket Assignee

Retrieves the assigned user and team for a Gorgias ticket. Returns the names of whoever is currently responsible for the ticket.

What it does

  • Calls the Gorgias Get Ticket endpoint.
  • Extracts the assigned user name (if any) and the assigned team name (if any).
  • Returns empty strings when the ticket is unassigned.

Notes

  • Includes retry logic for rate limiting (HTTP 429) with up to 3 attempts and exponential backoff.
  • A 10-second timeout is applied to the API call.
  • Returns success: true even when no assignee is set (with empty strings).

Inputs

NameTypeDescription
DomainCredentialsGorgias subdomain
UserCredentialsGorgias user email
KeyCredentials (sensitive)Gorgias API key
Gorgias Ticket IdStringThe numeric ticket ID

Outputs

NameTypeDescription
SuccessBooleanWhether the API call succeeded
Assigned UserStringName of the assigned agent, or empty if unassigned
Assigned TeamStringName of the assigned team, or empty if unassigned

API reference