action gamesparks_do_action_experiment_using_post { label: "doActionExperiment" provider: gamesparks method: POST path: "/restv2/game/{apiKey}/manage/experiments/{id}/{action}" encoding: json input: { type: "object" properties: { action: { type: "string" enum: ["start", "stop", "publish", "unpublish"] } apiKey: { type: "string" } id: { type: "integer" format: "int64" } } required: ["action", "apiKey", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }