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