This endpoint fetches a single applicant from the FirestoreDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Manuelfg1985/Proyecto_Final_26/llms.txt
Use this file to discover all available pages before exploring further.
postulantes collection by matching the provided :id path parameter against Firestore document IDs. If a matching document is found, the response includes the document id merged with all stored fields. This route is public — no authentication token is required.
The lookup is performed by scanning all documents in the
postulantes collection and finding the one whose doc.id matches the given :id. If no document matches, a 404 is returned.Endpoint
| Method | GET |
| Path | /api/postulantes/:id |
| Auth | None |
Path parameters
The Firestore document ID of the applicant to retrieve. This value is the auto-generated ID assigned by Firestore when the record was created.
Responses
200 OK
Returns the full applicant object for the matching document.The Firestore document ID of the applicant.
First name of the applicant.
Last name (surname) of the applicant.
Email address of the applicant.
Date of birth of the applicant (e.g.
"1990-05-15").Contact telephone number of the applicant.
City of residence of the applicant.
Province of residence of the applicant.
Job position the applicant applied for.
Timestamp of when the application was submitted.
Current status of the application (e.g.
"pending", "reviewed").404 Not Found
Returned when no document in thepostulantes collection matches the given :id.