Documentation Index
Fetch the complete documentation index at: https://mintlify.com/mauroperez055/infoJobs/llms.txt
Use this file to discover all available pages before exploring further.
The DELETE /jobs/:id endpoint removes a job listing from the in-memory store by its UUID. On success, it returns the deleted job record so callers can confirm exactly what was removed. If the specified ID does not match any existing job, the API responds with 404.
Deletion is permanent for the lifetime of the server session. Because the store is in-memory, all records are reset on server restart — but within a running session, a deleted job cannot be recovered. Make sure to confirm the correct job ID before issuing a delete request.
Path Parameters
The UUID of the job listing to delete.
Example
curl -X DELETE http://localhost:1234/jobs/7a4d1d8b-1e45-4d8c-9f1a-8c2f9a9121a4
200 Response
On success the API returns HTTP 200 with a message and a data array containing the deleted job object.
{
"message": "Job Deleted",
"data": [
{
"id": "7a4d1d8b-1e45-4d8c-9f1a-8c2f9a9121a4",
"titulo": "Desarrollador de Software Senior",
"empresa": "Tech Solutions Inc.",
"ubicacion": "Buenos Aires, Argentina",
"descripcion": "Buscamos un desarrollador senior con experiencia en arquitecturas modernas.",
"data": {
"technology": ["node", "typescript", "postgresql"],
"modalidad": "híbrido",
"nivel": "senior"
},
"content": {
"description": "Serás responsable de diseñar y mantener servicios backend escalables...",
"responsibilities": "Diseñar APIs REST, revisar código del equipo...",
"requirements": "5+ años de experiencia, dominio de TypeScript y SQL...",
"about": "Tech Solutions Inc. es una empresa de tecnología con más de 10 años en el mercado..."
}
}
]
}
404 Response
Returned when no job with the given ID exists in the store.
{ "error": "Job Not Found" }