action shipstation_create_a_new_question { label: "Create a New Question" description: "You may create your own question using this action. It takes a JSON\nobject containing a question and a collection of answers in the\nform of choices." provider: shipstation method: POST path: "/questions" encoding: json input: { type: "object" properties: { choices: { type: "array" items: { type: "string" } } question: { type: "string" } } } output: { type: "object" additionalProperties: true } }