Future<void> deleteKey({ required String keyPath, }) async { await _requestJson( 'DELETE', '/api/catalog/key', body: <String, dynamic>{ 'keyPath': keyPath, }, ); }