action agco_ats_string_translations_get_translation { label: "Get a single translation based upon stringId and languageId" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/StringTranslations/{stringId}/{languageId}" encoding: json input: { type: "object" properties: { languageId: { type: "integer" format: "int32" } stringId: { type: "string" } } required: ["languageId", "stringId"] additionalProperties: false } output: { type: "object" description: "A translation of a string in a specific language" required: ["StringValue"] properties: { AuthorId: { type: "integer" format: "int32" description: "The id of the user to last edit thie translation" } LanguageId: { type: "integer" format: "int32" description: "The id of the language of the translation" } State: { type: "string" description: "The state of the translation" enum: ["Original", "Requested", "Processing", "Processed", "Validated", "Invalidated", "RequestPending", "CreatePending"] } StringId: { type: "string" description: "The id of the string that is translated" } StringValue: { type: "string" description: "The translated string" } Timestamp: { type: "string" format: "byte" description: "A value indicating the last modification of this translation. Read Only." } } } }