action ix_api_roles_read { label: "roles_read" description: "Get a single `Role`." provider: ix_api method: GET path: "/roles/{id}" encoding: json input: { type: "object" properties: { id: { type: "array" items: { type: "string" } } name: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" } }