action agco_ats_content_definitions_get_content_definition { label: "Get a ContentDefinition by ID" description: "Gets a ContentDefinition by ID. When successful, the response is the requested ContentDefinition. \n If unsuccessful, an appropriate ApiError is returned." provider: agco_ats method: GET path: "/api/v2/ContentDefinitions/{contentDefinitionID}" encoding: json input: { type: "object" properties: { contentDefinitionID: { type: "integer" format: "int32" } includeAttributes: { type: "string" } } required: ["contentDefinitionID"] additionalProperties: false } output: { type: "object" description: "The definition of the content for submission" required: ["Description"] properties: { Attributes: { type: "array" description: "Attributes of this ContentDefinition" items: { type: "object" description: "An attribute of a definition of the content for submission" required: ["Name"] properties: { ContentDefinitionID: { type: "integer" format: "int32" description: "The ID of the content definition to which this attribute belongs." } ID: { type: "integer" format: "int32" description: "The ID of this attribute." } Name: { type: "string" description: "The name of this Attribute." } Value: { type: "string" description: "The value of this Attribute" } } } } ContentDefinitionID: { type: "integer" format: "int32" description: "The ID of this content definition." } Description: { type: "string" description: "The description used on the package type in the AGCO Update System" } Name: { type: "string" description: "The name of this content. Name must be valid for Attribute on PackageType." } PackageTypeID: { type: "string" description: "Read Only. The ID of the package type used for this content." } TypeID: { type: "integer" format: "int32" description: "The type of content." } } } }