action agco_ats_string_definitions_post_definition { label: "Create StringDefinition object. The originating translation must be provided. Accepts an array of StringDefinition objects. Returns nothing." description: "No Documentation Found." provider: agco_ats method: POST path: "/api/v2/StringDefinitions/Batch" encoding: form input: { type: "array" items: { 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." } } } } } } } output: { type: "object" additionalProperties: true } }