You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
POST parameters can only be marked up using the param keyword, which will show up as Query params. There should be a separate markup for POST parameters, or they should automatically be marked as POST parameters if the method is a POST method and the parameter is not listed in the URL.
E.g.:
.. http:method:: POST /foo/bar/{id}
:param id: Will be displayed as GET param
:param baz: Will be displayed as POST param
Or:
.. http:method:: POST /foo/bar/{id}
:param id: Will be displayed as GET param
:postparam baz: Will be displayed as POST param
The text was updated successfully, but these errors were encountered:
POST parameters can only be marked up using the
param
keyword, which will show up asQuery params
. There should be a separate markup for POST parameters, or they should automatically be marked as POST parameters if the method is a POST method and the parameter is not listed in the URL.E.g.:
Or:
The text was updated successfully, but these errors were encountered: