action agco_ats_translation_keys_get { label: "Get a paged response of TranslationKeys." description: "" provider: agco_ats method: GET path: "/api/v2/TranslationKeys" encoding: json input: { type: "object" properties: { keyNames: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" items: { type: "object" description: "A translation key to map the relationship of keyNames, usually for ODX, and string Ids" required: ["KeyName", "StringID"] properties: { ID: { type: "integer" format: "int32" description: "The identifier for the translationKey. Read Only." } KeyName: { type: "string" description: "The key name of the item. One example is tkODX_HWIKM14R01" } StringID: { type: "string" description: "Foreign key to StringDefinitionID" } } } } 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." } } } } } }