Hi,
I've created a custom connector to connect Power Automate (Flow) with NetSuite using OAuth2.0
According to NetSuite KB, to read, update, and delete a record, the record ID needs to be included in the URL.
For example:
- To get an employee record 107:
GET https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/employee/107
PATCH https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/employee/107
BODY { "firstname": "John" }
DELETE https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/employee/107
Thanks in advance
Solved! Go to Solution.
It turns out I need to put {variable} at the end of the link.
Example:
https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/employee/{employeeID}
And the following is the result when you use it on Flow:
It turns out I need to put {variable} at the end of the link.
Example:
https://demo123.suitetalk.api.netsuite.com/services/rest/record/v1/employee/{employeeID}
And the following is the result when you use it on Flow:
How did you configure your custom connector?
That's where I remain stuck.
Thanks in advance
Hi @Anonymous
Where did you get stuck?
I followed the following instructions: https://docs.microsoft.com/en-us/connectors/custom-connectors/define-blank
I have created a custom connector for NetSuite using OAuth2. I am running into an issue where I can’t get the token to refresh did you run into that issue?
Hi @ReaganRogers what you have experienced is similar to this post. Let's discuss this issue in that thread.
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 |