action agco_ats_languages_get_languages { label: "Get a list of the languages for which translations are supported. Returns a PagedResponse of Language objects." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Languages" encoding: json input: { type: "object" properties: { includeDeleted: { type: "boolean" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" items: { type: "object" description: "A language used for string translations." required: ["LocaleId", "Description"] 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." } } } } 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." } } } } } }