action agco_ats_translation_keys_get_translation_key { label: "Get TranslationKey by ID" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationKeys/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { 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" } } } }