Must add more than one parameter to the post method to work

when i add only one parameter to the post method it fail to accept it from my test using Firefox debugging
but if i add more than one parameter it works fine.

with two parameters like this its working and accepting the passed values in the body

but with one parameter like this it doesnt accept the passed parameter in body like

> {"a":"test"}

this is not on a specific method but on all methods

Hello @mohammad_altoiher

This is by design, when a method’s got only one specified parameter there will be only one input and the input will be recognized as a request body

so, it means you have to send “a” value as request body instead of sending object with key “a”

Regards, VLad