Skip to main content

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.

Permanently delete a job application by its unique ID. On success, the server returns a 204 No Content response with no response body. This action cannot be undone.

Endpoint

DELETE /api/applications/{id}
This endpoint requires authentication. Include a valid Bearer token in the Authorization header of every request.

Path Parameters

id
integer
required
The unique numeric ID of the job application to delete.

Example Request

curl -X DELETE https://your-domain.com/api/applications/1 \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"

Response

204 No Content

The application was successfully deleted. The response body is empty — no JSON is returned.
HTTP/1.1 204 No Content
Deletion is permanent. There is no soft-delete, recycle bin, or undo operation — once an application is deleted, it cannot be recovered. Ensure you have confirmed the correct id before making this request.

401 Unauthorized

Returned when the Authorization header is missing or the token is invalid.
{
  "message": "Unauthenticated."
}

404 Not Found

Returned when no application with the given ID exists.
{
  "message": "No query results for model [App\\Models\\JobApplication] 1"
}

Build docs developers (and LLMs) love