action agco_ats_authorization_codes_get_contact_information { label: "Get contact information for an authorization code." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/AuthorizationCodes/{id}/ContactInformation" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["AuthorizationCodeID", "Contact", "DealerCode", "Dealership", "Phone"] properties: { AuthorizationCodeID: { type: "integer" format: "int32" description: "AuthorizationCode ID that the contact information ties into." } Code: { type: "string" description: "The authorization code. Read Only." } Contact: { type: "string" description: "Name of contact requesting an authorization code. Minimum length of 3 characters." } CreatedBy: { type: "string" description: "The name of the user that created this code. Read Only." } CreatedDate: { type: "string" format: "date-time" description: "The date the authorization code was created." } DealerCode: { type: "string" description: "Dealer code that relates to the dealership. Minimum length of 3 characters." } Dealership: { type: "string" description: "Name of dealership. Minimum length of 3 characters." } DefinitionName: { type: "string" description: "The name of the definition used for generating this authorization code. Read Only." } Email: { type: "string" description: "Email of contact." } ID: { type: "integer" format: "int32" description: "ID of authorizationContactInformation" } Notes: { type: "string" description: "Optional notes used for internal use." } Phone: { type: "string" description: "Phone number of contact." } } } }