curl --location --request POST '/recentproject/' \
--header 'Ocp-Apim-Subscription-Key: {{your-api-key}}' \
--header 'Authorization: Bearer {{your-access-token}}'
{
"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"
}
}