get http://localhost:9100/api/versioned/v1/projects
Results returned can be filtered using an optional filter expression. Any string-valued field can be filtered on. A common use case is to retrieve a project by its externalId. Filters take the form of fieldName==<value>
. For example, the following query can be used to get myProject:
curl -X GET --header 'Accept: application/json' --header 'Authorization: BasicCreds <credentials>' 'http://<host>:9100/api/versioned/v1/projects?filter=externalId%3D%3DmyProject'
On success, GET calls to this endpoint to return a JSON array of project objects.