hngprojects / hng_boilerplate_nestjs

Description
Apache License 2.0
181 stars 105 forks source link

[FIX] [PHP] Refactoring API endpoint for posting jobs #1016

Open Milayomi opened 3 months ago

Milayomi commented 3 months ago

Description

To store jobs

Route

POST: /api/v1/jobs

Request Body

{
  "title": "string",
  "description": "string",
  "location": "string",
  "salary": 0,
  "level": "Junior",
  "company": "string"
}

Response Body

{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "title": "string",
  "description": "string",
  "location": "string",
  "salary": 0,
  "level": "Junior",
  "company": "string",
  "date-posted": "2024-08-24T13:54:05.495Z"
}
bamo100 commented 3 months ago

@Milayomi can i pick up this? if yes kindly assign me to it