DELETE /api/currency/:id 🔒 Auth Required

Delete a currency from the lookup table

📋 Endpoint Details

Method: DELETE
Path: /api/currency/:id
Authentication: Required - Include Authorization: Bearer <token> header

📥 Response Example

{ "success": true, "message": "Currency deleted successfully" }

💡 Usage Tips

cURL Example:

curl -X DELETE \ http://localhost:3000/api/currency/:id \ -H "Authorization: Bearer YOUR_TOKEN_HERE"
← Back to Home