TicketUpdateInput
Update data for modifying existing ticket information. Supports partial updates where only provided fields are modified, preserving existing values for omitted fields.
input TicketUpdateInput {
titles: [LocalizedStringInput!]
descriptions: [LocalizedStringInput!]
buttonLabels: [LocalizedStringInput!]
type: String
status: TicketStatus
assignedToAdminUserId: Int
contactId: Int
customerId: Int
productId: Int
clusterId: Int
orderId: Int
companyId: Int
email: String
phone: String
externalUrl: String
sources: [SourceInput!]
}
Fields
TicketUpdateInput.titles ● [LocalizedStringInput!] list input
Localized human-readable titles. Provides user-friendly titles in multiple languages for display in user interfaces and documentation. Each entry contains a language code and the corresponding description text.
TicketUpdateInput.descriptions ● [LocalizedStringInput!] list input
Localized human-readable descriptions. Provides user-friendly explanations in multiple languages for display in user interfaces and documentation. Each entry contains a language code and the corresponding description text.
TicketUpdateInput.buttonLabels ● [LocalizedStringInput!] list input
Localized human-readable labels for the action button. Each entry contains a language code and the corresponding description text.
TicketUpdateInput.type ● String scalar
Type of the ticket. Used for categorization and filtering purposes. Maximum length of 255 characters. Must be in SCREAMING_SNAKE_CASE.
TicketUpdateInput.status ● TicketStatus enum
Status of the ticket. Used for tracking the lifecycle of the ticket. One of: [OPEN, IN_PROGRESS, COMPLETED, ARCHIVED
TicketUpdateInput.assignedToAdminUserId ● Int scalar
Identifier of the admin user assigned to this ticket. Used for task assignment and accountability.
TicketUpdateInput.contactId ● Int scalar
Identifier of the contact associated with this ticket. Used for customer context and communication.
TicketUpdateInput.customerId ● Int scalar
Identifier of the customer associated with this ticket. Used for customer context and communication.
TicketUpdateInput.productId ● Int scalar
Identifier of the product associated with this ticket. Used for product-specific context and support.
TicketUpdateInput.clusterId ● Int scalar
Identifier of the cluster associated with this ticket. Used for cluster-specific context and support.
TicketUpdateInput.orderId ● Int scalar
Identifier of the order associated with this ticket. Used for order-specific context and support.
TicketUpdateInput.companyId ● Int scalar
Identifier of the company associated with this ticket. Used for company-specific context and support.
TicketUpdateInput.email ● String scalar
Email address of the contact associated with this ticket. Used for customer communication.
TicketUpdateInput.phone ● String scalar
Phone number of the contact associated with this ticket. Used for customer communication.
TicketUpdateInput.externalUrl ● String scalar
External URL associated with this ticket. Used for linking to external resources or documentation. Maximum length of 2048 characters.
TicketUpdateInput.sources ● [SourceInput!] list input
External sources of the ticket. Used for tracking the origin of the ticket.
Member Of
ticketUpdate mutation