Table of Contents

Class AccountUsersRequestBuilder.AccountUsersRequestBuilderGetQueryParameters

Namespace
Autodesk.ACC.CostManagement.V1.Projects.Item.AccountUsers
Assembly
Autodesk.ACC.CostManagement.dll

Retrieves all the users in the account of current project.

public class AccountUsersRequestBuilder.AccountUsersRequestBuilderGetQueryParameters
Inheritance
AccountUsersRequestBuilder.AccountUsersRequestBuilderGetQueryParameters
Inherited Members

Properties

FilterdefaultCompanyId

The contact's default company id. For example, filter[defaultCompanyId]=b6445638-ca68-4e3c-9160-15864de6b818.

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

Property Value

string

Filteremail

The contact's email address. For example, filter[email]=test@autodesk.com.

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

Property Value

string

Filtername

The item's name. For example, filter[name]=Labor.

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

Property Value

string

Filterstatus

The status code. Separate multiple IDs with commas. For example, filter[status]=draft,open.

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

Property Value

string[]

InternalLimit

The maximum number of items to return, this is for internal use, and the default maximum internal limit is 5000.

[QueryParameter("internalLimit")]
public int? InternalLimit { get; set; }

Property Value

int?

Limit

The maximum number of items to return, default maximum limit is 100.

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

Property Value

int?

Offset

The number of items to skip before starting to collect the result set.

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

Property Value

int?

OrFilters

List of filtered fields to apply an "or" operator. For example ``orFilters=name,email```.

[QueryParameter("orFilters")]
public string[]? OrFilters { get; set; }

Property Value

string[]

Sort

The sort order for items. Each attribute can be sorted in either asc (default) or desc order. For example, sort=name, updatedAt desc or sort=name + updatedAt desc sorts the results first by name in ascending order, then by date updated in descending order.

[QueryParameter("sort")]
public string? Sort { get; set; }

Property Value

string