Authorization: Bearer ********************curl --location 'http://localhost:3000/api/v1/job-applications/jobs/1/applicants?hiringStatus=interviewed' \
--header 'Authorization: Bearer <token>'{
"message": "Job applied successfully",
"status": "Success",
"data": {
"message": "Fetched successfully",
"status": "Success",
"meta": {
"total": 1,
"perPage": 10,
"currentPage": 1,
"lastPage": 1,
"firstPage": 1,
"firstPageUrl": "/?page=1",
"lastPageUrl": "/?page=1",
"nextPageUrl": null,
"previousPageUrl": null
},
"data": [
{
"id": 3,
"jobId": 1,
"hiringStatus": "applied",
"applicationStatus": "submitted",
"createdAt": "2024-10-02T22:33:40.188Z",
"applicant": {
"id": 3,
"userId": 3,
"firstName": "firstName",
"lastName": "lastName",
"otherName": null,
"email": "dev@worknation.com",
"gender": "male"
}
}
]
}
}