Project Service API
Project Service exposes a REST API, providing access to operations with projects Example:
$orderby
- Sorting criteria in the format: property (asc | desc). Default sort order is ascending./project-service/api/projects?$orderby=name%20desc
$top
- limits the requested number of resources./project-service/api/projects?$top=10
$skip
- client can skip a given number of resources./project-service/api/projects?$skip=2
$top
&$skip
- used in conjunction helps in pagination of resources/project-service/api/projects?$top=10&$skip=2
$filter
- returns a subset of resources that satisfy the given predicate expression./project-service/api/projects?$filter=startswith(name, 'Test')