action agco_ats_translation_sets_get_translation_set_strings { label: "Get a PagedResponse of TranslationSetString objects" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationSets/{ID}/Strings" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" items: { type: "object" description: "The resulting translation in a translation set. is the to which the string will be translated." required: ["TranslationSetId", "StringID", "LanguageID"] properties: { LanguageID: { type: "integer" format: "int32" description: "The ID of the language into which to translate the string" } StringID: { type: "string" description: "The Id of the string translation that has been requested" } StringValue: { type: "string" description: "The string value returned from the translator" } TranslationSetId: { type: "integer" format: "int32" description: "The id of the TranslationSet" } } } } 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." } } } } } }