var createBookmrk = context.request.body; get met...
# suitescript
r
var createBookmrk = context.request.body; get method in postman data in body - raw { "action":"postBookmark", "type":"VCO", "title":"Bookmarked Record Title", "id":123456, "bookmark":*true* } i am not geting anything .... in suitelet
b
http GET method has no body
r
then if i want add parameters to url in post .. how'd i do tht?
b
the same way you would do so in GET
however you may have to parse the url in your suitelet to access those parameters
r
if i do this at the start of the script if (context.request.method == "GET" || context.request.method == "POST") it gives me back this object in postman {     "servlet": "nlservlet",     "message": "Method Not Allowed",     "url": "/app/site/hosting/scriptlet.nl",     "status": "405" }
its a suitelet
r
thanksssssss