action agco_ats_roles_get_roles { label: "List Roles" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Roles" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } name: { type: "string" } offset: { type: "integer" format: "int32" } permissionID: { type: "integer" format: "int32" } permissionName: { type: "string" } } additionalProperties: false } output: { type: "object" description: "A response containing a page of results and metadata concerning the results" required: ["Entities", "Metadata"] properties: { Entities: { type: "array" items: { type: "object" description: "Defines an API Role" required: ["Name", "Description"] 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 (.)." } } } } Metadata: { type: "object" description: "Metadata for the paged response" required: ["Limit", "Offset", "TotalCount"] properties: { Limit: { type: "integer" format: "int32" description: "The number of entities this paged response is limited to." } Offset: { type: "integer" format: "int32" description: "The number of entities prior to this page of items." } TotalCount: { type: "integer" format: "int32" description: "The total number of entities matching the request." } } } } } }