Skip to main content

id-of-ticket-get

dci id-of-ticket-get ticketId

Returns the details of a single support request by its ID.

Responses​

200 (application/json)​

OK - Support request details returned.

{
"type": "object",
"description": "Detailed information about a single support ticket.",
"properties": {
"id": {
"type": "integer",
"description": "Ticket ID.",
"format": "int64"
},
"subject": {
"type": "string",
"description": "The subject of the ticket."
},
"description": {
"type": "string",
"description": "The body of the initial ticket message."
},
"requester": {
"type": "string",
"description": "Email address of the ticket requester."
},
"severity": {
"type": "string",
"description": "Ticket severity.",
"enum": [
"low",
"normal",
"high",
"urgent"
]
},
"platform": {
"type": "string",
"description": "Platform of the ticket.",
"enum": [
"doit",
"google_cloud_platform",
"amazon_web_services",
"microsoft_azure"
]
},
"product": {
"type": "string",
"description": "Ticket product."
},
"platform_info": {
"type": "string",
"description": "The cloud asset identifier the requester selected on the support\nform's asset-selector control β€” typically the GCP project ID, AWS\naccount ID, Azure subscription ID, or equivalent. Empty string\nwhen the ticket has no asset value (e.g. older tickets or tickets\nopened through paths that bypass the form selector).",
"example": "cmp-playground"
},
"status": {
"type": "string",
"description": "Ticket status."
},
"createTime": {
"type": "integer",
"description": "The time when this ticket was created, in milliseconds since the epoch.",
"format": "int64"
},
"updateTime": {
"type": "integer",
"description": "The time when this ticket was last updated, in milliseconds since the epoch.",
"format": "int64"
},
"urlUI": {
"type": "string",
"description": "Link to the ticket in DoiT console."
},
"is_public": {
"type": "boolean",
"description": "Whether the ticket is public."
}
}
}

400 (application/json)​

Bad Request - The server cannot process the request, often due to a malformed request.

{
"type": "object",
"description": "Standard error response structure.",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}

401 (application/json)​

Unauthorized - Invalid API key.

{
"type": "object",
"description": "Standard error response structure.",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}

403 (application/json)​

Forbidden - The client is not authorized to perform the request.

{
"type": "object",
"description": "Standard error response structure.",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}

404 (application/json)​

Not Found - The requested resource does not exist.

{
"type": "object",
"description": "Standard error response structure.",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}

Aliases: id-of-ticket-get, idofticketget