action apptigent_replace_values_in_collection { label: "Collections - Replace values in collection" description: "Replace whole or partial strings in a collection" provider: apptigent method: POST path: "/ReplaceValuesInCollection" encoding: json input: { type: "object" required: ["ignoreCase", "input", "match", "replacement"] properties: { ignoreCase: { type: "string" description: "Ignore case" enum: [true, false] } input: { type: "array" description: "Collection of strings" items: { type: "string" } } match: { type: "string" description: "Match value" } replacement: { type: "string" description: "Replacement value" } } } output: { type: "object" properties: { result: { type: "array" description: "Modified collection result" items: { type: "string" } } } } }