action agco_ats_translation_sets_get_source_strings { label: "Gets the information needed to translate a string in a translation set" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationSets/{ID}/SourceStrings" 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: "Information needed to translate a string in a translation set" properties: { DescriptionForTranslator: { type: "string" description: "A description of the string to translate. This should contain context and parameter count." } LanguageID: { type: "integer" format: "int32" description: "The ID of the language from which to translate the string" } StringID: { type: "string" description: "The ID of the string to translate" } StringValue: { type: "string" description: "The string to translate" } } } } 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." } } } } } }