Skip to content
Advertisement

Tag: flask-marshmallow

Call marshmallow validated GET endpoint with List parameter

I have a marshmallow schema validation like this: Then in my endpoint I call the schema validation: MyFilterSchema().load(flask.request.args) Now I try to call the HTTP GET endpoint which is using this validation. But I get ‘ids’: [‘Not a valid list.’] I tried different ways: but no luck. How must the endpoint be called that marshmallow recognizes my GET parameter as

Advertisement