action ritekit_shorten_link { label: "Shorten Link" description: "Returns a shorten link with a given CTA." provider: ritekit method: GET path: "/v1/link/short-link" encoding: json input: { type: "object" properties: { cta: { type: "integer" } url: { type: "string" } } required: ["cta", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }