get http://<host>:9100/api/versioned/v1/projects
Filtering Projects
The results returned by this endpoint can be filtered using an optional query parameter. Any string-valued field can be filtered on, but the most common use case is to retrieve a dataset by its External ID. 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'
Response Fields
Returns a list of projects, where each project is described by the project object.