I have a flask api that automatically validates and generates Swagger documentation thanks to marshmallow package.
One of the API methods is a POST request that wants a specific id
as a string and a list_of_ids
as an array of strings. The GUI looks like this:
Whatever I insert, I always get the same reply:
So my question is how do you input such list (or array) or strings? Is there an equivalent curl for it?