curl --location --request POST '/project/all' \
--header 'Ocp-Apim-Subscription-Key: {{your-api-key}}' \
--header 'Authorization: Bearer {{your-access-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"project_name": "Example Project",
"team_id": 1
}'
{
"success": true,
"message": "Project created successfully.",
"data": {
"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": "Example Project",
"team_visibility": false,
"is_deleted": false,
"team": 1
}
}