Fetch All Project
GET/v1/project/
Fetches all project for authenticated user.
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
projects
object[]
required
All projects for user
id Id (string)required
Id of the project
project_name Project Name (string)required
Name of the project
slug Slug (string)required
The project url-safe slug
{
"projects": [
{
"id": "string",
"project_name": "string",
"slug": "string"
}
]
}
Loading...