List all projects
List all projects in a workspace with pagination.
Query Parameters:
- page, page_size: Pagination
- sort: Sort field
- filter: Advanced filters
Example:
```
GET /apis/entities/v2/workspaces/default/projects?sort=-created_at&page=1&page_size=10
```
Path parameters
workspace
Query parameters
page
Page number
page_size
Items per page
sort
Sort field
filter
Query filter expression. Supports text and JSON syntaxes:
- Text: name:"value" AND status>500 with operators : ~ > >= < <= IN NOT IN AND OR and negation prefix -
- Object (JSON): {"name":{"$like":"value"}} with operators $eq, $like, $lt, $lte, $gt, $gte, $in, $nin, $and, $or, $not
- Bracket notation: ?filter[name][$like]=value
- Relationship traversal: ?filter[relationship][$exists]=true or ?filter[relationship][field]=value
Response
Successful Response
data
pagination
Pagination information.
sort
The field on which the results are sorted.
filter
Filtering information.
Errors
422
Unprocessable Entity Error