diff --git a/api/chalicelib/blueprints/bp_core.py b/api/chalicelib/blueprints/bp_core.py index e2ef487ed..18773f68c 100644 --- a/api/chalicelib/blueprints/bp_core.py +++ b/api/chalicelib/blueprints/bp_core.py @@ -822,7 +822,7 @@ def get_funnel(projectId, funnelId, context): project_id=projectId) if data is None: return {"errors": ["funnel not found"]} - return data + return {"data": data} @app.route('/{projectId}/funnels/{funnelId}', methods=['POST', 'PUT'])