action agco_ats_content_submissions_get_content_submission { label: "Get a ContentSubmission by ID" description: "Gets a ContentSubmission by ID. When successful, the response is the requested ContentSubmission. \n If unsuccessful, an appropriate ApiError is returned." provider: agco_ats method: GET path: "/api/v2/ContentSubmissions/{contentSubmissionID}" encoding: json input: { type: "object" properties: { contentSubmissionID: { type: "integer" format: "int32" } includeAttributes: { type: "string" } } required: ["contentSubmissionID"] additionalProperties: false } output: { type: "object" description: "A content submission" properties: { Attributes: { type: "array" description: "Attributes of this ContentSubmission" items: { type: "object" description: "The definition of the content for submission" required: ["Name"] properties: { ContentSubmissionID: { type: "integer" format: "int32" description: "The ID of the content submission 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" } } } } BuildID: { type: "integer" format: "int32" description: "ReadOnly. The ID of the Azure DevOps Build which will build the content package." } ContentDefinitionID: { type: "integer" format: "int32" description: "The ID of the Content Definition." } ContentSubmissionID: { type: "integer" format: "int32" description: "The ID of this Content Submission." } Definition: { 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." } } } JobRunID: { type: "integer" format: "int32" description: "ReadOnly. The ID of the JobRun which will build the content package." } PackageID: { type: "string" description: "The ID of package generated by this content submission." } ReleaseNotes: { type: "string" description: "Release Notes for this ContentSubmission" } Repository: { type: "string" description: "The SVN repository used as the source of this content submission" } Revision: { type: "integer" format: "int32" description: "The SVN revision used as the source of this content submission." } SubmissionDate: { type: "string" format: "date-time" description: "Read Only. The UTC date and time the content submission was made." } UserID: { type: "integer" format: "int32" description: "Read Only. The ID of the user who submitted the content" } Version: { type: "integer" format: "int32" description: "Optional. The version number assigned to this Content Submission and the resulting Package. \n If not provided, version shall be 1 if it is the first content submission for the \n ContentDefinitionID otherwise it shall be the highest content submission version for the \n specified ContentDefinitionID incremented by 1." } } } }