flask-restful-swagger icon indicating copy to clipboard operation
flask-restful-swagger copied to clipboard

How to define Parameters while giving request get

Open soumilshah1995 opened this issue 6 years ago • 0 comments

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?

soumilshah1995 avatar Aug 26 '19 00:08 soumilshah1995