flask-restful-swagger
flask-restful-swagger copied to clipboard
How to define Parameters while giving request get
Hello how can i supply param in swagger while doing a request get ?
parameters=[
{
"name": "zip",
"description": "The ID of the TODO item",
"required": True,
"allowMultiple": False,
"dataType": 'string',
"paramType": "path"
}
])
I also want to supply a param Token how can i add that?