Criteria Templates
List Criteria Templates
Returns a paginated collection of criteria templates.
get/v1/criteria-templates
Query parameters
page[size]integer
Example:10
The maximum number of items to include per page. The last page of a collection may include fewer items.
page[number]integer
Example:1
Determines which page of the entities to retrieve.
Filters a collection of criteria templates.
sortstring
The asc suffix is optional as the default sort order is ascending. The desc suffix is used to specify a descending order. Multiple sort attributes may be provided via a comma separated list. JSONPath notation may be used to specify a sub-attribute (eg: 'foo.bar desc').
Example:created_at desc
Sorts a collection of criteria templates. Supported sort attributes are:
- display_name
- name
Default sort is display_name in ascending order.
Response
A paginated list response for a collection of criteria templates.
Example response
{
"meta": {
"page": {
"number": 1,
"size": 10,
"total": 100
}
},
"data": [
{
"name": "time_to_merge",
"category": "Source Code Management"
}
]
}