Update any ticket (assign / status / severity / category)
const url = 'https://api.aetherplatform.cloud/api/v1/admin/tickets/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = { method: 'PUT', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"severity":"low","status":"open","category":"cluster","assigned_to":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://api.aetherplatform.cloud/api/v1/admin/tickets/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "severity": "low", "status": "open", "category": "cluster", "assigned_to": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }'Updates a ticket’s severity, status, category, or assigned_to without an org scope. All fields are optional; omitted fields are left unchanged. Uses the admin transition matrix, which additionally permits reopening a closed ticket (to open or in_progress); an illegal transition is rejected with 422 (invalid_transition). Requires the platform-admin realm role.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Support ticket UUID.
Request Bodyrequired
Section titled “Request Bodyrequired”All fields are optional; omitted fields are left unchanged.
object
Must be a legal transition from the current status (closed is terminal in this phase). An illegal move returns 422 with code invalid_transition.
Responses
Section titled “Responses”The updated ticket.
object
Optional cluster this ticket concerns.
JWT subject of the opener; null for API-token requests.
Set when the first provider message is posted.
Set when the ticket enters resolved; cleared only when a resolved ticket is reopened (to open/in_progress); preserved on close.
Example
{ "category": "cluster", "severity": "low", "status": "open"}Missing or invalid credentials.
object
object
A stable, machine-readable error code.
object
Examplegenerated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}The credential was accepted but lacks the required role or access (e.g. a non-platform-admin calling an /api/v1/admin endpoint).
object
object
A stable, machine-readable error code.
object
Examplegenerated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}The requested resource was not found.
object
object
A stable, machine-readable error code.
object
Examplegenerated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}Request validation failed.
object
object
A stable, machine-readable error code.
object
Examplegenerated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}