Class IssueTypesRequestBuilder.IssueTypesRequestBuilderGetQueryParameters
Retrieves a project's categories and types. Note the following differences in terminology between the product and the API:.. list-table:: Terminology :widths: 15 15 :header-rows: 1 * - Product Name - API Name * - Category - Type * - Type - SubtypeNote that by default this endpoint does not return types (subtypes). To return types (subtypes), you need to add the include=subtypes
query string parameter.Note that this endpoint does not return deleted items.This operation is available to everyone... include:: ../../../../_snippets/not-backward-compatible.rst
public class IssueTypesRequestBuilder.IssueTypesRequestBuilderGetQueryParameters
- Inheritance
-
IssueTypesRequestBuilder.IssueTypesRequestBuilderGetQueryParameters
- Inherited Members
Properties
FilterisActive
Filter types by status e.g. filter[isActive]=true
will only return active types. Default value: undefined
(meaning both active & inactive issue type categories will return).
[QueryParameter("filter%5BisActive%5D")]
public bool? FilterisActive { get; set; }
Property Value
- bool?
FilterupdatedAt
Retrieves types that were last updated at the specified date and time, in 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 string? FilterupdatedAt { get; set; }
Property Value
Include
Use include=subtypes
to include the types (subtypes) for each category (type).
[QueryParameter("include")]
public string? Include { get; set; }
Property Value
Limit
Add limit=20
to limit the results count (together with the offset to support pagination).
[QueryParameter("limit")]
public int? Limit { get; set; }
Property Value
- int?
Offset
Add offset=20
to get partial results (together with the limit to support pagination).
[QueryParameter("offset")]
public int? Offset { get; set; }
Property Value
- int?