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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Ruby on Rails API login example
Nothing particularly Rails-specific about it, but this will get you started...
# netsuite_helper.rb # # This module requires the soap4r gem to run. Confirm you have it by running this from the command-line: # # gem list --local # # If you see soap4r there, you're halfway home. # # You'll need to generate the SOAP class files using the NetSuite WSDL. Look in the local dir for: # * default.rb # * defaultDriver.rb # * defaultMappingRegistry.rb # * NetSuiteServiceClient.rb # If they're there, fire away. If not, change to the local directory in your command window and run: # # wsdl2ruby.rb --wsdl https://webservices.netsuite.com/wsdl/v2_6_0/netsuite.wsdl
0