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.team_id
, follow this guide:team_id
is required and must be a valid integer.curl --location -g --request GET 'https:///v2/api/team/0/project' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"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
}
]
}