action agco_ats_dealers_get_dealers { label: "Get a list of dealers." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Dealers" encoding: json input: { type: "object" properties: { Brand: { type: "string" } DealerName: { type: "string" } ShippingCountry: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } 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" properties: { BillingAddress: { type: "string" } BillingAddress2: { type: "string" } BillingAddress3: { type: "string" } BillingAddress4: { type: "string" } BillingCity: { type: "string" } BillingCountry: { type: "string" } BillingCountryCode: { type: "string" } BillingState: { type: "string" } BillingZip: { type: "string" } Brands: { type: "array" items: { type: "string" } } DealerCode: { type: "string" } DealerName: { type: "string" } DealerStatus: { type: "string" } DealerStatusUpdateDate: { type: "string" } Filler: { type: "string" } IsValid: { type: "boolean" } LanguagePreference: { type: "string" } Region1: { type: "string" } Region2: { type: "string" } RegionMapping: { type: "string" } RoleBrand: { type: "string" } ShippingAddress2: { type: "string" } ShippingAddress3: { type: "string" } ShippingAddress4: { type: "string" } ShippingCity: { type: "string" } ShippingCountry: { type: "string" } ShippingState: { type: "string" } ShippingStreet: { type: "string" } ShippingZip: { type: "string" } Telephone: { type: "string" } VATCode: { type: "string" } } } } 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." } } } } } }