Table of Contents

Class CommentsRequestBuilder.CommentsRequestBuilderGetQueryParameters

Namespace
Autodesk.ACC.RFIs.V2.Containers.Item.Rfis.Item.Comments
Assembly
Autodesk.ACC.RFIs.dll

Retrieves all the comments associated with an RFI... include:: ../../../../_snippets/forward-compatible.rst

public class CommentsRequestBuilder.CommentsRequestBuilderGetQueryParameters
Inheritance
CommentsRequestBuilder.CommentsRequestBuilderGetQueryParameters
Inherited Members

Properties

Fields

Specify which attributes you want to see in the response. Separate multiple values with commas. For example, fields = title,description.

[Obsolete("This property is deprecated, use FieldsAsGetFieldsQueryParameterType instead")]
[QueryParameter("fields")]
public string[]? Fields { get; set; }

Property Value

string[]

FieldsAsGetFieldsQueryParameterType

Specify which attributes you want to see in the response. Separate multiple values with commas. For example, fields = title,description.

[QueryParameter("fields")]
public GetFieldsQueryParameterType[]? FieldsAsGetFieldsQueryParameterType { get; set; }

Property Value

GetFieldsQueryParameterType[]

FiltercreatedAt

Retrieves comments created after the specified date, in the following format: YYYY-MM-DDThh:mm:ss.sz, or a date range in the following format: YYYY-MM-DDThh:mm:ss.sz..YYYY-MM-DDThh:mm:ss.sz.

[QueryParameter("filter%5BcreatedAt%5D")]
public string? FiltercreatedAt { get; set; }

Property Value

string

FiltercreatedBy

Retrieves comments that were created by the specified user. Use the user's Autodesk ID. For example, filter[createdBy]=PER8KQPK2JRT. To find the ID call GET users/me BIM 360</en/docs/bim360/v1/reference/http/rfis-v2-users-me-GET/>_ ACC</en/docs/acc/v1/reference/http/rfis-v2-users-me-GET/>_ and check user.id.

[QueryParameter("filter%5BcreatedBy%5D")]
public string[]? FiltercreatedBy { get; set; }

Property Value

string[]

Limit

The number of RFIs to return in the response payload. Acceptable values: 1-200. Default value: 10. For example, to limit the response to two RFIs per page, use limit=2

[QueryParameter("limit")]
public int? Limit { get; set; }

Property Value

int?

Offset

Number of RFIs into the collection that the pagination starts on. For example, to begin the results from the fourth record, use offset=3

[QueryParameter("offset")]
public int? Offset { get; set; }

Property Value

int?

Sort

The fields to sort the list by

[Obsolete("This property is deprecated, use SortAsGetSortQueryParameterType instead")]
[QueryParameter("sort")]
public string[]? Sort { get; set; }

Property Value

string[]

SortAsGetSortQueryParameterType

The fields to sort the list by

[QueryParameter("sort")]
public GetSortQueryParameterType[]? SortAsGetSortQueryParameterType { get; set; }

Property Value

GetSortQueryParameterType[]