action agco_ats_translation_sets_get_translation_set { label: "Get a TranslationSet object by its id. Related TranslationSetStrings are NOT returned." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationSets/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } includeAttributes: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" description: "A set of strings submitted for translation" required: ["FileIDs", "State"] properties: { Attributes: { type: "array" description: "Attributes of the Translation Set" 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" } } } } FileIDs: { type: "array" description: "IDs for files related to this translation set. For example, the original and processed files" items: { type: "string" } } Id: { type: "integer" format: "int32" description: "The id of the TranslationSet." } InDate: { type: "string" format: "date-time" description: "Read Only. The date the translation set was returned." } Notes: { type: "string" description: "Notes on the TranslationSet" } OutDate: { type: "string" format: "date-time" description: "Read Only. The date the translation set was sent out." } State: { type: "string" description: "An enum indicating the state of the translation set" enum: ["OutForProcessing", "Processing", "PendingApproval", "OutForTranslation", "Cancelled", "Completed"] } TranslationRequestID: { type: "integer" format: "int32" description: "Read Only. The Id of the TranslationRequest which generated this translation set." } } } }