action agco_ats_string_translations_get_translations { label: "Get a paged response of Global String Translations." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/StringTranslations" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } modifiedAfterTimestamp: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" 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." } } } } Metadata: { type: "object" description: "Metadata for the paged response" required: ["Limit", "Offset", "TotalCount"] properties: { Limit: { type: "integer" format: "int32" description: "The number of entities this paged response is limited to." } Offset: { type: "integer" format: "int32" description: "The number of entities prior to this page of items." } TotalCount: { type: "integer" format: "int32" description: "The total number of entities matching the request." } } } } } }