Delete a vote to remove a user’s support from a suggestion
| Field | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Unique vote identifier |
| suggestionId | string | Yes | ID of the suggestion |
| userId | string | Yes | ID of the user who removed the vote |
| Status Code | Description | Example Response |
|---|---|---|
| 400 | Bad request - User not found | {"error": "User not found"} |
| 401 | Unauthorized - Invalid API key | {"error": "Unauthorized"} |
| 404 | Vote not found | {"error": "Vote not found for this user and suggestion"} |
| 500 | Internal server error | {"error": "Failed to delete vote"} |