Get priority status values
This API provides a means to access a list of priority status values, offering flexibility through pageable parameters such as page, size, sort and name.
Query parameters
-
The
pagedefine the current page number. It should be positive integer number and should start with minimum value 1.Minimum value is
1. -
The
sizedefine number of records on each page. It should be positive integer number between 1 to 10000.Minimum value is
1, maximum value is10000. -
The
sortparameter accepts an array of strings, allowing for multiple sorting criteria. By default, sorting order is ascending. -
The
nameparameter is an optional filter that allows you to narrow down the results based on specific name content.
GET
/static-values/priority
curl \
--request GET 'https://usaapi02.cadencyservices.trintech.com/test/api/static-values/priority' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"result": [
{
"id": "string",
"name": "string"
}
],
"metadata": {
"totalElements": 42,
"totalPages": 42,
"first": true,
"last": true,
"empty": true,
"numberOfElements": 42,
"size": 42,
"sorted": true
}
}