Get Projects
This endpoint allows you to query all projects associated to your userId.
GET
https://shield-api.quillai.network/api/v1/projects/list
{
"projects": [
{
"name": "testingzip",
"id": 12
},
{
"name": "testzip",
"id": 11
}
],
"totalProjects": 2
}
Query Parameters
Parameter
Description
Data Type
Requirement
userId
Id of the user for which you want to query the projects
String
Required
limit
Limt count for number of records per page
String
Optional
page
Page Number for pagination
String
Optional
Response Codes
Responses
Description
🟢 200
Success
🟠400
Error
🔴 401
Unauthorised
Sample Response
{
"projects": [
{
"name": "testingzip",
"id": 12
},
{
"name": "testzip",
"id": 11
}
],
"totalProjects": 2
}
Last updated