action agco_ats_permissions_get_permission { label: "Gets a Permission" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Permissions/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["DataRequired", "Name"] 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." } } } }