action agco_ats_translation_sets_post_translation_set_attribute { label: "Create a TranslationSetAttribute object" description: "No Documentation Found." provider: agco_ats method: POST path: "/api/v2/TranslationSets/{ID}/Attributes" encoding: form input: { type: "object" properties: { ID: { type: "integer" format: "int32" } 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" } } required: ["ID", "Name"] additionalProperties: false } output: { type: "integer" format: "int32" } }