Joobz is an innovative platform designed to seamlessly connect users with vetted, high-quality professionals and artisans for a wide range of services and errands. Our mission is to revolutionize how people find help, ensuring a smooth, reliable, and secure experience for both service seekers and providers.
- Dual Registration: Users can join as service seekers or freelancers, fostering a dynamic community of both clients and professionals.
- Verified Professionals: All service providers undergo a thorough vetting process, ensuring quality and trustworthiness.
- Secure Transactions: Our platform facilitates safe, transparent financial exchanges between users and freelancers by using an escrow system.
- Wide Service Range: From home repairs, car repairs, skilled services to personal errands, Joobz covers a diverse array of service categories.
- User-Friendly Interface: Intuitive design makes it easy to post jobs, find professionals, and manage bookings.
- Real-Time Communication: In-app messaging allows for clear, direct communication between clients and service providers.
Joobz aims to empower local communities by creating opportunities for skilled professionals while providing convenient, reliable solutions for everyday tasks and specialized services. I am committed to building a platform that values quality, fairness, and user satisfaction above all.
This project represents the culmination of a year-long Software Engineering Bootcamp with ALX Africa. It serves as a practical application of the full-stack development skills acquired during the program, showcasing proficiency in both frontend and backend technologies.
This repository contains the codebase for the backend implementation of Joobz, demonstrating expertise in modern development practices and backend development.
I invite you to explore Joobz and experience the future of service networking – where quality meets convenience, and every task finds its perfect match.
- Stephen Omoregie
- cre8stevedev@gmail.com
- https://cre8stevedev.me
- https://linkedin.com/stephen-omoregie
- Twitter: @Cre8steveDev
- Node/ExpressJS
- Typescript
- MongoDB
All endpoints relating to Authentication Listed under this heading are prefixed with /api/auth
.
Most endpoints require authentication. Include the JWT token in the Authorization header:
Authorization: Bearer <your_token_here>
-
URL:
/signup/user
-
Method:
POST
-
Description: Register a new user account
-
Request Body:
{ "fullName": "string", "email": "string", "phoneNumber": "string", "password": "string", "state": "string", "country": "string" }
-
Success Response:
- Code: 201
- Content:
{ "success": true, "message": "User Account created successfully." }
-
Error Response:
- Code: 400, 409, or 403
- Content:
{ "success": false, "message": "Error message" }
-
URL:
/signup/freelancer
-
Method:
POST
-
Description: Register a new freelancer account
-
Request Body:
{ "fullName": "string", "email": "string", "phoneNumber": "string", "password": "string", "state": "string", "country": "string" }
-
URL:
/signin
-
Method:
POST
-
Description: Authenticate a user or freelancer
-
Request Body:
{ "email": "string", "password": "string" }
-
Success Response:
-
Code: 200
-
Content:
{ "success": true, "message": "Logged in Successfully.", "auth": { "token": "string", "tokenExpiry": "number" }, "user": { // User or Freelancer data } }
-
-
Error Response:
- Code: 400 or 500
- Content:
{ "success": false, "message": "Error message", "auth": null, "user": null }
- URL:
/verify-otp
- Method:
POST
- Description: Verify the One-Time Password for account activation
- URL:
/renew-otp
- Method:
POST
- Description: Request a new One-Time Password
- URL:
/refresh-token
- Method:
GET
- Description: Get a new access token
- Authentication: Required
- URL:
/get-user-profile-data
- Method:
POST
- Description: Retrieve user profile data for dashboard
- Authentication: Required
- URL:
/get-freelancer-profile-data
- Method:
POST
- Description: Retrieve freelancer profile data for dashboard
- Authentication: Required (Freelancer only)
- URL:
/update-location
- Method:
POST
- Description: Update user's location information
- URL:
/update-freelancer-location
- Method:
POST
- Description: Update freelancer's location information
- URL:
/update-user-profile
- Method:
POST
- Description: Update user's profile information
- URL:
/get-wallet
- Method:
GET
- Description: Retrieve user's wallet information
- Authentication: Required
- URL:
/update-wallet
- Method:
POST
- Description: Update user's wallet information
- Authentication: Required
- URL:
/get-api-key
- Method:
GET
- Description: Retrieve Paystack API key for payments
- Authentication: Required
- Success Response:
- Code: 200
- Content:
{ "apiKey": "string" }
-
URL:
/create-new-job
-
Method:
POST
-
Description: Create a new job tied to the user's account
-
Authentication: Required
-
Request Body:
{ "job": { "title": "string", "description": "string", "category": "string", "budget": "number", "skills": "string (comma-separated)", "state": "string", "pictures": "array", "deadline": "date" } }
-
Success Response:
- Code: 201
- Content:
{ "success": true }
-
Error Response:
- Code: 403
- Content:
{ "success": false }
-
URL:
/all-by-user
-
Method:
GET
-
Description: Retrieve all jobs created by the authenticated user
-
Authentication: Required
-
Success Response:
-
Code: 200
-
Content:
{ "success": true, "jobs": [ { // Job object } ] }
-
-
Error Response:
- Code: 500
- Content:
{ "success": false, "jobs": null }
-
URL:
/job-data
-
Method:
POST
-
Description: Retrieve detailed data for a single job
-
Authentication: Required
-
Request Body:
{ "jobId": "string" }
-
Success Response:
-
Code: 200
-
Content:
{ "success": true, "job": { // Detailed job object including (filtered client) //and proposals data } }
-
-
Error Response:
- Code: 500
- Content:
{ "success": false, "job": null }