PRODUCTS

INTEGRATIONS

Connect your Oracle NetSuite ERP system with your legacy systems and any other applications you want.

Integrations

Oracle NetSuite - SuiteTalk SOAP Web Services

The SOAP web services platform provides programmatic access to Oracle NetSuite data and business processes through an XML-based application programming interface (API). In general, the SOAP web services platform has the following characteristics:

  • Web services coded in SOAP The platform uses SOAP-based web services with document-style encoding, or Doc style. Doc-style encoding consists of message-oriented exchanges where an XML schema specified in the SOAP message defines the structure of any messages sent between two applications. RPC exchanges are not supported.
  • HTTPS transport Currently, the only supported transport is HTTPS, as defined in the WSDL document.

Oracle NetSuite - SuiteTalk REST Web Services

NetSuite REST web services provide an integration channel that extends the capabilities of SuiteTalk. REST web services provide a REST-based interface for interacting with NetSuite.

Using REST web services, you can:

  • Use CRUD (create, read, update, delete) operations to perform business processing on Oracle NetSuite records and dynamically navigate between records.
  • Obtain and process the API to register metadata.
  • Execute queries on Oracle NetSuite records.

ACS Generic Restlet

Aiming to facilitate the integration between the Oracle NetSuite platform and other applications, Active CS developed the ACS Generic Restlet product, which is nothing more than an API (Application Programming Interface) with a set of routines standardized in the REST (Representational State Transfer) architecture.

The Generic Restlet allows the creation, updating, and querying of any record on the Oracle NetSuite platform. In other words, with this product it is possible to send, from any application, in JSON format, all types of NetSuite records that allow manipulation via API, such as: Customers, Suppliers, Employees, Transactions, Custom Records, etc.

The product includes the following methods:

GET

The GET method is used when there is a need to obtain a resource or a list of resources. When executing the GET method on a resource, a representation will be returned by the server.

POST

We use the POST method when we want to create a resource on the server from a specific representation.

PUT

Similar to the POST method, the basic idea of ​​the PUT method is to allow the updating of a resource on the server.