action agco_ats_string_definitions_get_definition { label: "Get a paged response of Global String Definitions." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/StringDefinitions/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } includeDeletedLanguages: { type: "boolean" } includeTranslations: { type: "boolean" } languageIds: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" description: "The definition of a string to be translated" required: ["DescriptionForTranslator"] properties: { DescriptionForTranslator: { type: "string" description: "The description of the string to be translated." } DoNotTranslate: { type: "boolean" description: "True if the string should not be translated. False by default." } Id: { type: "string" description: "The identifier for the string. Read Only." } ParameterCount: { type: "integer" format: "int32" description: "The number of parameters expected for the string." } Timestamp: { type: "string" format: "byte" description: "A value indicating the last modification of this string. Read Only." } Translations: { type: "array" description: "Translations for the string." items: { 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." } } } } } } }