Wasla
  1. Project
Wasla
  • Auth
    • Register a new user
      POST
    • Login
      POST
    • Logout
      POST
  • FreelancerProfile
    • Certifications
      • Update Freelancer Certifications
      • Add Freelancer Certification
      • All freelancer Certifications
      • Delete Freelancer Certifaction
    • Educations
      • All Educations
      • Add Educations
    • Social Links
      • All Freelancer Social Links
      • Add Freelancer Social Link
      • Delete Freelancer Social Link
      • Update Freelancer Social Links
    • Proposal
      • Apply Freelancer on Project
      • Update Proposal
      • Delete Proposal
    • Show Freelancer
      GET
    • MyProfile
      GET
    • Add Skills
      POST
    • Freelancer Image
      POST
    • Update Freelancer Profile
      PUT
    • Delete Freelancer Profile
      DELETE
  • ClientProfile
    • Project
      • Post Project
        POST
      • Show Project
        GET
      • Update Project
        PUT
      • Delete Project
        DELETE
    • Review
      • Create Review
      • Update Review
    • Show Profile
      GET
    • Update Profile
      PUT
    • Accept Proposal
      PUT
  • All Skills
    GET
  • All Projects
    GET
  • Schemas
    • Api Responce
    • User
  1. Project

Post Project

Developing
Testing Env
https://test.your-api-server.com
Testing Env
https://test.your-api-server.com
POST
/projects

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Examples

Responses

🟢201Created
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
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]
}'
Response Response Example
{
    "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"
        ]
    }
}
Modified at 2025-09-23 19:51:47
Previous
Delete Freelancer Profile
Next
Show Project
Built with