Retrieving Project Details
The /projects endpoint lists the projects that are currently stored in the Revenera registry.
The list of projects is sorted alphabetically by the project name (which is identical with the Download Package ID). The list is paged, where the number of data sets per page can be configured using the pageSize parameter. A specific page of results can be requested by setting the page parameter.
Item |
Description |
URI |
/registry/api/v1/projects |
Method |
GET |
Query parameters |
page: Retrieves a specific page. Must be a number. pageSize: Specifies how many data sets per page should be returned. Must be a number. |
Request body |
N/A |
Response codes |
200: Success 400: Bad request format. 401: Unauthorized 500: Internal server error |
Sample Response
The following shows project details from a sample response:
[
{
"project_id": 1234,
"name": "test_project_001",
"repo_count": 1,
"chart_count": 1,
"creation_time": "Tue Dec 14 09:59:23 UTC 2021",
"update_time": "Fri Mar 11 09:50:06 UTC 2022"
}
]