action agco_ats_translation_keys_create_translation_key { label: "Create a translationKey object." description: "No Documentation Found." provider: agco_ats method: POST path: "/api/v2/TranslationKeys" encoding: form input: { 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" } } } output: { type: "integer" format: "int32" } }