action agco_ats_languages_get_language { label: "Get a language by its id. Returns a Language object" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Languages/{LocaleID}" encoding: json input: { type: "object" properties: { LocaleID: { type: "integer" format: "int32" } } required: ["LocaleID"] additionalProperties: false } output: { type: "object" description: "A language used for string translations." required: ["Description", "LocaleId"] properties: { Description: { type: "string" description: "The description of the language (e.g. “English – United States”)." } IsDeleted: { type: "boolean" description: "Indicates whether the API supports the language. Must be false when created. Read Only." } LocaleId: { type: "integer" format: "int32" description: "The Locale Id of the language." } } } }