Class IssueRootCauseCategoriesRequestBuilder.IssueRootCauseCategoriesRequestBuilderGetQueryParameters
Retrieves a list of supported root cause categories and root causes that you can allocate to an issue. For example, communication and coordination.Note that by default, this endpoint only returns root cause categories. To include root causes you need to to add the include
query string parameter (include=rootcasues
)... include:: ../../../../_snippets/not-backward-compatible.rst
public class IssueRootCauseCategoriesRequestBuilder.IssueRootCauseCategoriesRequestBuilderGetQueryParameters
- Inheritance
-
IssueRootCauseCategoriesRequestBuilder.IssueRootCauseCategoriesRequestBuilderGetQueryParameters
- Inherited Members
Properties
FilterupdatedAt
Retrieves root cause categories 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 string? FilterupdatedAt { get; set; }
Property Value
Include
Add 'include=rootcauses' to add the root causes for each category.
[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?