Invalidates the given api key
Future<bool> invalidateApiKey(String apiKey) async { try { await _delete('/api/api_key/$apiKey'); return true; } catch (e) { return false; } }