Disables the warmup status of an account in the Instantly API.
Future<void> pauseWarmup({ required String email, }) async { await _dio.post<void>( '/account/warmup/pause', data: {'email': email}, ); }