action autodealerdata_get_dealers_get_dealers_by_id_get { label: "Premium. Dealers by ID" description: "Premium. Dealership information using the internal ID. Returns name, address, state, zipCode, and ID for a single dealer in the same format as the /getDealers endpoint.\nDealer IDs are generally retrieved via the /getDealers or /getDealersByRegion endpoints." provider: autodealerdata method: GET path: "/getDealersByID" encoding: json input: { type: "object" properties: { dealerID: { type: "integer" } jwt: { type: "string" } } required: ["dealerID", "jwt"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "array" items: { type: "object" required: ["dealerName", "zipCode", "state", "address", "ids"] properties: { address: { type: "string" } dealerName: { type: "string" } ids: { type: "array" items: { type: "integer" } } state: { type: "string" } zipCode: { type: "integer" } } } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }