Table of Contents

Class AttachmentsRequestBuilder.AttachmentsRequestBuilderGetQueryParameters

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

Retrieves information about all the attachments in a project associated with a specific RFI... include:: ../../../../_snippets/forward-compatible.rst

public class AttachmentsRequestBuilder.AttachmentsRequestBuilderGetQueryParameters
Inheritance
AttachmentsRequestBuilder.AttachmentsRequestBuilderGetQueryParameters
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[]

FilterincludeDeleted

Include deleted attachments in the response.

[QueryParameter("filter%5BincludeDeleted%5D")]
public bool? FilterincludeDeleted { get; set; }

Property Value

bool?

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?

RedirectToS3

should redirect download to S3 bucket directly.

[QueryParameter("redirectToS3")]
public bool? RedirectToS3 { get; set; }

Property Value

bool?

Sort

Sort the attachments by specified attributes. For example, sort=createdAt. Separate multiple values with commas.

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

Property Value

string[]

SortAsGetSortQueryParameterType

Sort the attachments by specified attributes. For example, sort=createdAt. Separate multiple values with commas.

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

Property Value

GetSortQueryParameterType[]