Table of Contents

Class IssueAttributeMappingsRequestBuilder.IssueAttributeMappingsRequestBuilderGetQueryParameters

Namespace
Autodesk.ACC.Issues.Projects.Item.IssueAttributeMappings
Assembly
Autodesk.ACC.Issues.dll

Retrieves information about the issue custom attributes (custom fields) that are assigned to issue categories and issue types.We do not currently support adding custom fields to issues. For information about adding custom fields to issues categories and types, see the help documentation <https://help.autodesk.com/view/DOCS/ENU/?guid=Issues_Types_Categories>_.Note that by default, this endpoint only retrieves custom attributes that were directly assigned to the issue category or issue type. It does not retrieve inherited custom attributes... include:: ../../../../_snippets/not-backward-compatible.rst

public class IssueAttributeMappingsRequestBuilder.IssueAttributeMappingsRequestBuilderGetQueryParameters
Inheritance
IssueAttributeMappingsRequestBuilder.IssueAttributeMappingsRequestBuilderGetQueryParameters
Inherited Members

Properties

FilterattributeDefinitionId

Retrieves issue custom attribute mappings associated with the specified issue custom attribute definitions. Separate multiple values with commas. For example: filter[attributeDefinitionId]=18ee5858-cbf1-451a-a525-7c6ff8156775.

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

Property Value

string

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.000ZFor more details, see JSON API Filtering <http://jsonapi.org/format/#fetching-filtering>_.

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

Property Value

DateTimeOffset?

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.000ZTo 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

DateTimeOffset?

FiltermappedItemId

Retrieves issue custom attribute mappings associated with the specified items (project, type, or subtype). Separate multiple values with commas. For example: filter[mappedItemId]=18ee5858-cbf1-451a-a525-7c6ff8156775. Note that this does not retrieve inherited custom attribute mappings or custom attribute mappings of descendants.

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

Property Value

string

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.000ZFor more details, see JSON API Filtering <http://jsonapi.org/format/#fetching-filtering>_.

[QueryParameter("filter%5BupdatedAt%5D")]
public DateTimeOffset? FilterupdatedAt { get; set; }

Property Value

DateTimeOffset?

Limit

The number of custom attribute mappings 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 mappings you want to begin retrieving results from.

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

Property Value

int?