Class RefsRequestBuilder.RefsRequestBuilderGetQueryParameters
- Assembly
- Autodesk.DataManagement.dll
Returns the resources (items, folders, and versions) that have a custom relationship with the given version_id. Custom relationships can be established between a version of an item and other resources within the data domain service (folders, items, and versions).Notes:Each relationship is defined by the id of the object at the other end of the relationship, together with type, attributes, and relationships links.Callers will typically use a filter parameter to restrict the response to the custom relationship types (filter[meta.refType]) they are interested in.The response body will have an included array which contains the ref resources that are involved in the relationship, which is essentially the GET projects/:project_id/versions/:version_id/relationships/refs endpoint.New! Autodesk Construction Cloud platform (ACC). Note that this endpoint is compatible with ACC projects. For more information about the Autodesk Construction Cloud APIs, see the Autodesk Construction Cloud documentation.
public class RefsRequestBuilder.RefsRequestBuilderGetQueryParameters
- Inheritance
-
RefsRequestBuilder.RefsRequestBuilderGetQueryParameters
- Inherited Members
Properties
FilterextensionType
Filter by the extension type.
[QueryParameter("filter%5Bextension%2Etype%5D")]
public string[]? FilterextensionType { get; set; }
Property Value
- string[]
Filterid
Filter by the id of the ref target.
[QueryParameter("filter%5Bid%5D")]
public string[]? Filterid { get; set; }
Property Value
- string[]
Filtertype
Filter by the type of the ref target. Supported values include folders, items, and versions
[Obsolete("This property is deprecated, use FiltertypeAsGetFilterTypeQueryParameterType instead")]
[QueryParameter("filter%5Btype%5D")]
public string[]? Filtertype { get; set; }
Property Value
- string[]
FiltertypeAsGetFilterTypeQueryParameterType
Filter by the type of the ref target. Supported values include folders, items, and versions
[QueryParameter("filter%5Btype%5D")]
public GetFilterTypeQueryParameterType[]? FiltertypeAsGetFilterTypeQueryParameterType { get; set; }