Skip to content
Get in touch

Filtered

A 200 response with a paginated list of filtered items.

ParameterTypeDescription
statusintegerThe HTTP status code
messagestringThe message to return
itemsArrayItems from the current page
paginationInfoPaginatedResultsInfoDetails about the pagination
sortInfoSortedResultsInfoThe sort order of the items
filterInfoobjectThe filters applied to the response items

A JSON example of this model.

{
"status": 200,
"message": "Success",
"items": [
{
"id": "123",
"name": "Test 1"
},
{
"id": "124",
"name": "Test 2"
}
],
"paginationInfo": {
"page": 1,
"pageSize": 10,
"totalItems": 25,
"totalPages": 3
},
"sortInfo": {
"field": "name",
"direction": "asc"
},
"filterInfo": {
"lastModifiedAt": {
"operator": "gte",
"value": "2024-01-01T00:00:00Z"
}
}
}