action agco_ats_translation_sets_get_translation_set_attributes { label: "Get a PagedResponse of TranslationSetAttribute objects" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationSets/{ID}/Attributes" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } limit: { type: "integer" format: "int32" } name: { type: "string" } offset: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" items: { type: "object" description: "An attribute of a" required: ["Name"] properties: { ID: { type: "integer" format: "int32" description: "The ID of this attribute." } Name: { type: "string" description: "The name of this Attribute." } TranslationSetID: { type: "integer" format: "int32" description: "The ID of the translation set to which this attribute belongs." } Value: { type: "string" description: "The value of this Attribute" } } } } 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." } } } } } }