action gambitcomm_agent_store_unset { label: "Deletes a variable which is currently defined." description: "This will cleanup persistent variables if needed" provider: gambitcomm method: PUT path: "/mimic/agent/{agentNum}/store/unset/{var}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } var: { type: "string" } } required: ["agentNum", "var"] additionalProperties: false } output: { type: "string" } }