Welcome to ERP-Talk Community
For first time users please create an account
Notifications
Clear all
NetSuite
1
Posts
1
Users
0
Reactions
608
Views
Topic starter
17/12/2019 10:00 am
Hello all,
I have a simple python route as follows:-
@app.route('/api/customer/', methods=['PUT'])
def check():
data=request.json
return data
I'm trying to call this python route using suite script in Oracle Netsuite. Here is the code for Requesting part of my suitescript.
nlapiRequestUrl(url,data,headers,'PUT')
var jsonVar = [{"email":"john@email.com","lastname":"Famous","firstname":"John"}];
var data = JSON.stringify(jsonVar);
When I am executing my suite script, I am Getting the following error in the netsuite app. Error
It would be a great help if some one can give me a head's up.
Thanks in advance,