Class IssueAttributeDefinitionsRequestBuilder.IssueAttributeDefinitionsRequestBuilderGetQueryParameters
- Assembly
- Autodesk.ACC.Issues.dll
Retrieves information about issue custom attributes (custom fields) for a project, including the custom attribute title, description and type.For example, the possible values for a dropdown list, the IDs, the names and whether the attribute is visible.Note that custom attributes are known as custom fields in the ACC UI.For information about creating issue custom attributes for a project, see the help documentation <https://help.autodesk.com/view/BUILD/ENU/?guid=Issues_Custom_Fields>
_... include:: ../../../../_snippets/not-backward-compatible.rst
public class IssueAttributeDefinitionsRequestBuilder.IssueAttributeDefinitionsRequestBuilderGetQueryParameters
- Inheritance
-
IssueAttributeDefinitionsRequestBuilder.IssueAttributeDefinitionsRequestBuilderGetQueryParameters
- Inherited Members
Properties
FiltercreatedAt
Retrieves items that were created at the specified date and time, in one of the following URL-encoded formats: YYYY-MM-DDThh:mm:ss.sz or YYYY-MM-DD. Separate multiple values with commas. We support the following filtering options:- Date range: e.g., 2022-03-02..2022-03-03
or 2022-02-28T22:00:00.000Z..2022-03-28T22:00:00.000Z
- Specific day: e.g., 2022-03-02
or 2022-02-28T22:00:00.000Z
- Specific start date: e.g., 2022-03-02..
or 2022-02-28T22:00:00.000Z..
- Specific end date: e.g., ..2022-03-02
or ..2022-02-28T22:00:00.000Z
For more details, see JSON API Filtering <http://jsonapi.org/format/#fetching-filtering>
_.
[QueryParameter("filter%5BcreatedAt%5D")]
public DateTimeOffset? FiltercreatedAt { get; set; }
Property Value
FilterdataType
Retrieves issue custom attribute definitions with the specified data type. Possible values: list
(this corresponds to dropdown
in the UI), text
, paragraph
, numeric
. For example, filter[dataType]=text,numeric
.
[Obsolete("This property is deprecated, use FilterdataTypeAsGetFilterDataTypeQueryParameterType instead")]
[QueryParameter("filter%5BdataType%5D")]
public string? FilterdataType { get; set; }
Property Value
FilterdataTypeAsGetFilterDataTypeQueryParameterType
Retrieves issue custom attribute definitions with the specified data type. Possible values: list
(this corresponds to dropdown
in the UI), text
, paragraph
, numeric
. For example, filter[dataType]=text,numeric
.
[QueryParameter("filter%5BdataType%5D")]
public GetFilterDataTypeQueryParameterType? FilterdataTypeAsGetFilterDataTypeQueryParameterType { get; set; }
Property Value
FilterdeletedAt
Retrieves types that were deleted at the specified date and time, in one of the following URL-encoded formats: YYYY-MM-DDThh:mm:ss.sz or YYYY-MM-DD. Separate multiple values with commas. We support the following filtering options:- Date range: e.g., 2022-03-02..2022-03-03
or 2022-02-28T22:00:00.000Z..2022-03-28T22:00:00.000Z
- Specific day: e.g., 2022-03-02
or 2022-02-28T22:00:00.000Z
- Specific start date: e.g., 2022-03-02..
or 2022-02-28T22:00:00.000Z..
- Specific end date: e.g., ..2022-03-02
or ..2022-02-28T22:00:00.000Z
To include non-deleted items in the response, add null
to the filter: filter[deletedAt]=null,YYYY-MM-DDThh:mm:ss.sz...YYYY-MM-DDThh:mm:ss.sz
.For more details, see JSON API Filtering <http://jsonapi.org/format/#fetching-filtering>
_.
[QueryParameter("filter%5BdeletedAt%5D")]
public DateTimeOffset? FilterdeletedAt { get; set; }
Property Value
FilterupdatedAt
Retrieves items that were last updated at the specified date and time, in one of the following URL-encoded formats: YYYY-MM-DDThh:mm:ss.sz or YYYY-MM-DD. Separate multiple values with commas. We support the following filtering options:- Date range: e.g., 2022-03-02..2022-03-03
or 2022-02-28T22:00:00.000Z..2022-03-28T22:00:00.000Z
- Specific day: e.g., 2022-03-02
or 2022-02-28T22:00:00.000Z
- Specific start date: e.g., 2022-03-02..
or 2022-02-28T22:00:00.000Z..
- Specific end date: e.g., ..2022-03-02
or ..2022-02-28T22:00:00.000Z
For more details, see JSON API Filtering <http://jsonapi.org/format/#fetching-filtering>
_.
[QueryParameter("filter%5BupdatedAt%5D")]
public DateTimeOffset? FilterupdatedAt { get; set; }
Property Value
Limit
The number of custom attribute definitions to return in the response payload. For example, limit=2
. Acceptable values: 1-200
. Default value: 200
.
[QueryParameter("limit")]
public int? Limit { get; set; }
Property Value
- int?
Offset
The number of custom attribute definitions you want to begin retrieving results from.
[QueryParameter("offset")]
public int? Offset { get; set; }
Property Value
- int?