project_id
. This endpoint adds the selected project to the user's list of recent projects, allowing quick and convenient access in future interactions.project_id
(in path): The unique ID of the project you want to add to the recent list.project_id
, follow this guide:curl --location -g --request POST 'https:///v2/api/project/0/recent' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Recent project added successfully.",
"data": {
"id": 200,
"project": {
"id": 151,
"created_by": "user@example.com",
"created_on": "2024-10-22T00:43:29.531995Z",
"modified_by": "user@example.com",
"modified_on": "2024-10-22T00:43:29.532010Z",
"project_name": "Sample Project Name Updated",
"team_visibility": false,
"is_deleted": true,
"team": 1
},
"created_on": "2024-10-22T00:50:39.646216Z"
}
}