Retrieve all job applications belonging to the authenticated user. Results are ordered with the most recently created application first.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ericcobasdev/careertrack-api/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
This endpoint requires authentication. Include a valid Bearer token in the
Authorization header of every request.The
JobApplication model defines a scopeFilter scope that supports filtering by status, company, from, and to. However, the current index() controller implementation calls JobApplication::latest()->get() directly and does not apply this scope. All applications belonging to the authenticated user are returned regardless of any query parameters sent.Example Request
Response
200 OK
Returns a JSON object with adata array containing all matching job application resources.
An array of job application objects. Empty array
[] if the user has no applications.401 Unauthorized
Returned when theAuthorization header is missing or the token is invalid.