action apptigent_encode_string { label: "Text - Encode string" description: "Encode a string using Base64 encoding" provider: apptigent method: POST path: "/EncodeString" encoding: json input: { type: "object" required: ["source"] properties: { source: { type: "string" description: "String variable or text value" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }