action agco_ats_user_content_definitions_get_user_content_definition { label: "Get a UserContentDefinition by ID" description: "Gets a UserContentDefinition by ID. When successful, the response is the requested UserContentDefinition. \n If unsuccessful, an appropriate ApiError is returned." provider: agco_ats method: GET path: "/api/v2/UserContentDefinitions/{userContentDefinitionID}" encoding: json input: { type: "object" properties: { userContentDefinitionID: { type: "integer" format: "int32" } } required: ["userContentDefinitionID"] additionalProperties: false } output: { type: "object" description: "Relationship indicating that a User can manage submissions for the Content" properties: { ContentDefinitionID: { type: "integer" format: "int32" description: "The ID of the ContentDefinition." } UserContentDefinitionID: { type: "integer" format: "int32" description: "Read Only. The ID of the User to ContentDefinition relationship." } UserID: { type: "integer" format: "int32" description: "The ID of the user." } } } }