project_id
). This endpoint is essential for users who want to view or manage information related to a particular project within their team workspace.project_id
?project_id
is a unique numeric identifier assigned to each project in the Ejento platform.project_id
, follow this guide:curl --location -g --request GET 'https:///v2/api/project/0' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Project found successfully.",
"data": {
"id": 147,
"created_by": "user@example.com",
"created_on": "2024-05-20T16:54:43.865452Z",
"modified_by": "",
"modified_on": "2024-05-20T16:54:43.865467Z",
"project_name": "testproject2",
"team_visibility": false,
"is_deleted": false,
"team": 60
}
}