action apptigent_split_string { label: "Text - Split string" description: "Split a string based upon one or more characters" provider: apptigent method: POST path: "/SplitString" encoding: json input: { type: "object" required: ["characters", "input"] properties: { characters: { type: "string" description: "One or more characters that will be used to split the text" } input: { type: "string" description: "Text to split" } } } output: { type: "object" properties: { data: { type: "array" description: "data" items: { type: "string" } } } } }