action apptigent_url_decode { label: "Text - Decode URL" description: "Decode an encoded URL" provider: apptigent method: POST path: "/URLDecode" encoding: json input: { type: "object" required: ["source"] properties: { source: { type: "string" description: "Encoded string variable or text value" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }