curl --location -g --request POST 'https:///api/v2/projects/teams/lookup' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"project_ids": [
0
]
}'
{
"success": true,
"message": "string",
"data": {
"projects": [
{
"id": 0,
"project_name": "string",
"created_by": "string",
"team": {
"id": 0,
"created_by": "string",
"created_on": "2019-08-24T14:15:22Z",
"modified_by": "string",
"modified_on": "2019-08-24T14:15:22Z",
"team_name": "string",
"is_deleted": true,
"org": 0
}
}
]
}
}