action agco_ats_roles_get_role { label: "Gets a User Role" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Roles/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Defines an API Role" required: ["Description", "Name"] properties: { Description: { type: "string" description: "Role description" } Id: { type: "integer" format: "int32" description: "The role's identifier." } Name: { type: "string" description: "The name of the role. Must be alpha-numeric strings separated by a period (.)." } } } }