result = {'success': False, 'data': {}} try: mgr = ProductManager() r = await mgr.get_subscription_detail( subscription_id=params_kw.get('id', '') ) result = r except Exception as e: result['error'] = str(e) debug(format_exc()) return json.dumps(result, ensure_ascii=False, default=str)