action apptigent_json_to_xml { label: "Data - JSON to XML" description: "Convert a JSON object to an XML string" provider: apptigent method: POST path: "/JSONtoXML" encoding: json input: { type: "object" required: ["input", "root"] properties: { input: { type: "string" description: "JSON array object" } root: { type: "string" description: "Name of root node" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }