action apptigent_replace_string { label: "Text - Replace string" description: "Replace one value with another in a string" provider: apptigent method: POST path: "/ReplaceString" encoding: json input: { type: "object" required: ["replacement", "source", "value"] properties: { replacement: { type: "string" description: "Replacement text" } source: { type: "string" description: "String containing the text to be replaced" } value: { type: "string" description: "Text to replace" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }