Project Service API

Project Service API

Project Service exposes a REST API, providing access to operations with projects Example:

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