Create New Project
POST
/project/all
Project APIs
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/project/all' \
--header 'Content-Type: application/json' \
--data-raw '{
"project_name": "Example Project",
"team_id": 1
}'
Response Response Example
{
"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
}
}
Request
Body Params application/json