To list all the projects in your WAYSCloud account, make a GET
request to the /api/projects/
endpoint.
Request
GET /api/projects/
Response
On a successful request, you will receive a list of projects in your WAYSCloud account.
[
{
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"name": "Project 1",
"description": "First project description"
},
{
"uuid": "123e4567-e89b-12d3-a456-426614174001",
"name": "Project 2",
"description": "Second project description"
}
]
Notes
- Each project object will include a
uuid
,name
, anddescription
. - The response is a list of projects if multiple projects exist in your account.