action agco_ats_roles_get_role_permissions { label: "Get the Permissions for a Role" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Roles/{id}/Permissions" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } limit: { type: "integer" format: "int32" } name: { type: "string" } offset: { type: "integer" format: "int32" } } required: ["id"] 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" required: ["Name", "DataRequired"] properties: { DataDescription: { type: "string" description: "Description of data to be provided with Role Authorization" } DataRequired: { type: "string" description: "Indicates if data is required or optional" enum: ["Yes", "No", "Optional"] } Description: { type: "string" } Id: { type: "integer" format: "int32" description: "The identifier of the permission." } Name: { type: "string" description: "The name of the permission." } } } } 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." } } } } } }