action agco_ats_authorization_codes_get_authorization_code { label: "Get an authorization code by its ID." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/AuthorizationCodes/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Represents the model containing an authorization code used to unlock a feature in machines and EDT" properties: { Code: { type: "string" description: "The code to enter to unlock a feature. Read only." } CreatedByUserID: { type: "integer" format: "int32" description: "The ID of the user that created this authorization code. Read only." } CreatedDate: { type: "string" format: "date-time" description: "A timestamp of when this code was created. Read only." } DataParameters: { type: "array" description: "The parameters and values contained as data in this authorization code. May not be updated." items: { type: "object" description: "A parameter used to create an authorization code." required: ["Name", "Value"] properties: { Name: { type: "string" description: "The name of the parameter. May not be updated." } Value: { type: "string" description: "The value of the parameter. May not be updated." } } } } DefinitionID: { type: "string" description: "The id of the definition for this authorization code. May not be updated." } DeletedByUserID: { type: "integer" format: "int32" description: "The ID of the user that deleted this authorization code. Read only." } DeletedDate: { type: "string" format: "date-time" description: "A timestamp of when this authorization code was deleted. Read only." } EffectiveDate: { type: "string" format: "date-time" description: "A date at which this code should begin being valid. Optional. Set on create only." } ID: { type: "integer" format: "int32" description: "The identifier for the authorization code. Read only." } IsDeleted: { type: "boolean" description: "Indicates whether this code is deleted." } ValidationParameters: { type: "array" description: "The parameters and values used to validate this authorization code. May not be updated." items: { type: "object" description: "A parameter used to create an authorization code." required: ["Name", "Value"] properties: { Name: { type: "string" description: "The name of the parameter. May not be updated." } Value: { type: "string" description: "The value of the parameter. May not be updated." } } } } } } }