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