action cenit_get_setup_scheduler_id { label: "Retrieve an existing schedule" description: "Retrieves the details of an existing scheduler. You need only supply the unique scheduler identifier that was returned upon scheduler creation." provider: cenit method: GET path: "/setup/scheduler/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }