action solarvps_post_tickets_department_add { label: "Open ticket with desired department" description: "Available departments are support, billing, sales" provider: solarvps method: POST path: "/tickets/{department}/add" encoding: json input: { type: "object" properties: { contents: { type: "string" } department: { type: "string" } subject: { type: "string" } } required: ["contents", "department", "subject"] additionalProperties: false } output: { type: "object" additionalProperties: true } }