Thank You,
I am able to see parameters in the swagger ui, But when i enter the data it is not passing data to server.
ex.
my url:
http://localhost:46340/service/{id}method type: Get
when i enter the data in text box it is not passing as query string.
Added below attributes for one column.
[ApiMember(Name = "Id", Description = "id", ParameterType = "path", DataType = "int", Verb = "Get", IsRequired = true)]
and i tried with different types of parametertypes (body, header,path, query).
Do we need to add more attributes?
Am i missing?