action apptigent_shorten_link { label: "Text - Shorten hyperlink" description: "Generate a simple, short URL from a complex URL" provider: apptigent method: POST path: "/ShortenLink" 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" } } } }