action solarvps_get_tickets_ticket_id { label: "View details on a specific ticket" description: "Shows all information of a specific ticketId" provider: solarvps method: GET path: "/tickets/{ticketId}" encoding: json input: { type: "object" properties: { ticketId: { type: "string" } } required: ["ticketId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }