curl --location --request POST 'https://test.your-api-server.com/projects' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "Website Redesign",
"description": "Redesign our e-commerce website to improve UX and performance.",
"budget": 3000,
"deadline": "2025-12-15",
"experience_level": "intermediate",
"skills": [1, 3, 5]
}'
{
"code": 201,
"message": "Project created successfully",
"data": {
"id": 29,
"title": "Website Redesign",
"description": "Redesign our e-commerce website to improve UX and performance.",
"status": "open",
"budget": 3000,
"duration": "12 weeks",
"deadline": "2025-12-15",
"completed_at": null,
"rating": null,
"experience_level": "intermediate",
"created_at_human": "0 seconds ago",
"proposals_count": null,
"review_comment": null,
"client": {
"id": 2,
"company_name": "TechNova Solutions Updated LLC"
},
"skills": [
"PHP",
"Flutter",
"Web Development"
]
}
}