I want to show only get and post methods in select box above is it possible.
Solved! Go to Solution.
You can do same using CSS, use below css in style tab to hide the DELETE & PUT.
select#request_verb option:nth-child(3), select#request_verb option:nth-child(4){ display:none !important; }