action apptigent_join_strings { label: "Text - Join strings" description: "Join a collection of strings" provider: apptigent method: POST path: "/JoinStrings" encoding: json input: { type: "object" required: ["input", "lower", "separator", "trim"] properties: { input: { type: "array" description: "Collection of strings to be joined" items: { type: "string" } } lower: { type: "string" description: "Convert strings in collection to lowercase" enum: [true, false] } separator: { type: "string" description: "Separator character" } trim: { type: "string" description: "Trim strings in collection" enum: [true, false] } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }