Skip to main content

SupportTicket

A SupportTicket tracks a support request. Tickets can be associated with an Organisation or Group, and include priority levels, status tracking, and resolution timestamps.

Fields

FieldTypeDescription
idID!Unique identifier
subjectString!Ticket subject
descriptionStringInitial description of the issue
submittedByAWSEmailEmail of the user who created the ticket
prioritySupportTicketPriorityP1_URGENT, P2_HIGH, P3_MEDIUM, or P4_LOW
statusSupportTicketStatusCurrent status
createdAWSDateTime!When the ticket was created
modifiedAWSDateTimeWhen the ticket was last updated
dueByAWSDateTimeResolution due date
resolvedAtAWSDateTimeWhen the ticket was resolved
firstResponseTimeAWSDateTimeFirst response time
organisationIdIDRelated organisation
groupIdIDRelated group

SupportTicketStatus

OPEN, PENDING, RESOLVED, CLOSED, WAITINGFORTHIRDPARTY, WAITINGFORCUSTOMER, UNKNOWN

Query

SupportTickets are accessed via User.supportTicketConnection:

query GetMyTickets {
user {
supportTicketConnection(page: 1) {
supportTickets {
id
subject
status
priority
created
modified
}
totalCount
pageInfo {
hasNextPage
page
}
}
}
}
  • User — the user who created the ticket

Export This Article

Save a copy of this page as PDF or plain text.