action randommer_post_api_text_transform { label: "Transform text" provider: randommer method: POST path: "/api/Text/Transform" encoding: json input: { type: "object" properties: { "X-Api-Key": { type: "string" } caseType: { type: "string" enum: ["LowerCase", "UpperCase", "SentenceCase", "TitleCase"] } find: { type: "string" } replace: { type: "string" } text: { type: "string" } textActionType: { type: "string" enum: ["Transform", "Replace"] } } required: ["textActionType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }