action agco_ats_content_submissions_get_content_submission_attributes { label: "Get Attributes for a ContentSubmission" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/ContentSubmissions/{contentSubmissionID}/Attributes" encoding: json input: { type: "object" properties: { contentSubmissionID: { type: "integer" format: "int32" } limit: { type: "integer" format: "int32" } name: { type: "string" } offset: { type: "integer" format: "int32" } } required: ["contentSubmissionID"] additionalProperties: false } output: { type: "object" description: "A response containing a page of results and metadata concerning the results" required: ["Entities", "Metadata"] properties: { Entities: { type: "array" 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" } } } } 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." } } } } } }