project_id
, refer to this guide:curl --location -g --request POST 'https:///v2/api/team/projects' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"project_ids": [
1,
2
]
}'
{
"success": true,
"message": "Projects retrieved successfully",
"data": [
{
"id": 1,
"project_name": "General Project2",
"created_by": "user@example.com",
"team": {
"team_id": 1,
"team_name": "General"
}
}
]
}