Get all projects that a user has access to
GET {{baseUrl}}/projects?nameOnly=false - DELETE&page=0&limit=10&sort=NAME&order=ASC
Returns all projects that the authenticating user has access to. Organization owners get a list of all projects in owned organizations. Other members get a list of just the projects they are member of.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
nameOnly | string | Return the project information excluding APIs and domains | |
page | number | Page to return | |
limit | number | Number of results per page (1 .. 100) | |
sort | string | Sort criteria or result set: |
- NAME
- OWNER
|
|
order
| string | | Sort order |
RESPONSES
status: OK
{"offset":0,"totalCount":1,"projects":[{"name":"CoreServices","description":"APIs for core functionality","apis":["petstore"],"domains":["common-models"]},{"name":"CoreServices","description":"APIs for core functionality","apis":["petstore"],"domains":["common-models"]}]}