Get All Projects By Team
GET
/v2/api/team/{team_id}/project
Project
team_id
. This endpoint enables teams to organize, track, and manage projects that belong to their workspace collectively.team_id
?team_id
is a unique identifier assigned to each team within the Ejento platform.How to Find Your Team ID
team_id
, follow this guide:How to View Team ID
team_id
is required and must be a valid integer.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v2/api/team//project'
Response Response Example
{
"success": true,
"message": "Projects found successfully.",
"data": [
{
"id": 127,
"created_by": "user@example.com",
"created_on": "2024-05-02T15:32:43.369529Z",
"modified_by": "",
"modified_on": "2024-05-02T15:32:43.369545Z",
"project_name": "project1",
"team_visibility": false,
"is_deleted": false,
"team": 1
},
{
"id": 179,
"created_by": "user@example.com",
"created_on": "2024-06-25T18:55:39.593170Z",
"modified_by": "",
"modified_on": "2024-06-25T18:55:39.593187Z",
"project_name": "Mudasir's Project",
"team_visibility": false,
"is_deleted": false,
"team": 1
}
]
}
Request
Path Params
team_id
integerÂ
required