Get Projects By User and Team
GET
/v2/api/user/{user_id}/project
User Project
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v2/api/user//project'
Response Response Example
{
"success": true,
"message": "User-project association found successfully.",
"data": [
{
"id": 100,
"project": {
"id": 47,
"created_by": "user@example.com",
"created_on": "2023-11-27T18:42:00.962402Z",
"modified_by": "",
"modified_on": "2023-11-27T18:42:00.962425Z",
"project_name": "Learning pathway",
"team_visibility": false,
"is_deleted": false,
"team": {
"id": 15,
"created_by": "user@example.com",
"created_on": "2023-10-25T19:22:06.349312Z",
"modified_by": "user@example.com",
"modified_on": "2023-10-25T19:22:06.349330Z",
"team_name": "Human Resources",
"is_deleted": false,
"org": 1
}
}
},
{
"id": 84,
"project": {
"id": 31,
"created_by": "user@example.com",
"created_on": "2023-11-06T20:17:05.228687Z",
"modified_by": "",
"modified_on": "2023-11-06T20:17:05.228708Z",
"project_name": "Training Content",
"team_visibility": false,
"is_deleted": false,
"team": {
"id": 15,
"created_by": "user@example.com",
"created_on": "2023-10-25T19:22:06.349312Z",
"modified_by": "user@example.com",
"modified_on": "2023-10-25T19:22:06.349330Z",
"team_name": "Human Resources",
"is_deleted": false,
"org": 1
}
}
}
]
}
Request
Path Params
user_id
integerÂ
required
Example:
50