You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Title: Implement API Endpoint to Retrieve a Single Job Listing by ID
Description:
Implement an API endpoint that allows authenticated users to retrieve the details of a specific job listing by its ID. This will help users view the information related to a particular job posting.
Endpoint Details:
Endpoint: GET /api/v1/jobs/:id
Method: GET
Authentication: Required
Parameters:
Path Parameter: id (string) - The unique identifier of the job listing to be retrieved.
Expected Response:
200 OK: When the job listing is successfully retrieved.
404 Not Found: When the job listing with the specified ID does not exist.
500 Internal Server Error: When an unexpected error occurs on the server.
Title: Implement API Endpoint to Retrieve a Single Job Listing by ID
Description:
Implement an API endpoint that allows authenticated users to retrieve the details of a specific job listing by its ID. This will help users view the information related to a particular job posting.
Endpoint Details:
GET /api/v1/jobs/:id
id
(string) - The unique identifier of the job listing to be retrieved.Expected Response:
Response Schema:
Acceptance Criteria:
Success Response:
Not Found Response:
Internal Server Error Response:
The text was updated successfully, but these errors were encountered: