Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Suitetalk webservice login
as a requirement our client asks us to record transactions, which will be obtained via webservices from a third-party system, when we are performing the first step of logging in, it marks the following error.The specified role is invalid.
_svce = New NSWS.NetSuiteService
_svce.CookieContainer = New Net.CookieContainer
Dim MyPassport As NSWS.Passport = New NSWS.Passport()
MyPassport.account = _accID
MyPassport.email = _user
Dim MyRole As NSWS.RecordRef = New NSWS.RecordRef()
MyRole.internalId = roleId
MyPassport.role = MyRole
MyPassport.password = _pswd
Net.ServicePointManager.SecurityProtocol = Net.SecurityProtocolType.Tls12
Dim sr As NSWS.Status = _svce.login(MyPassport).status
0