Announcement: You can find the guides for Commerce 7.5 and later on the new Elastic Path Documentation site. This Developer Center contains the guides for Commerce 6.13.0 through 7.4.1.Visit new site

This version of Elastic Path Commerce is no longer supported or maintained. To upgrade to the latest version, contact your Elastic Path representative.

Developer Tips

Developer Tips

This section is to help Cortex client developers get coding and building their client applications as fast as possible.

Community Forums

Cortex has a passionate client developer community. Go to the community to ask questions, assist your fellow client developers, share ideas, and so on. The community is located at: https://grep.elasticpath.com/community/developer_forums/cortex

Useful Third-Party Tools

This is an inexhaustive list of some tools client developers may find helpful for creating Cortex applications.

  • jQuery - Supplies a JavaScript library to simplify code development.
  • JSONPath - Is a useful third-party tool for extracting specific information from a JSON object. This can save you from having to create your own methods to loop through JSON objects to retrieve data.

Tips for Developing Applications

ZOOM, ZOOM, ZOOM

Learn how to ZOOM: Zoom. Zoom allows you to batch multiple GET requests into a single HTTP request. This tool can drastically reduce the number of requests your client app needs to make.

Supported Client Programming Languages

Developers can use any programming language that supports HTTP requests and JSON parsing (Java, C#, PHP, Ruby, JavaScript, and so on) to create a Cortex client application. Cortex does not have client libraries developers that you need to download and install in order to build a client application. That said, Cortex works particularly well with JavaScript clients.

Don't Construct URIs

First, you don't need to because Cortex builds the URIs for you. That's the benefit of a REST Level 3 API, the API returns the URI of the resource you would use for the next operation. For example, getting an item will return an item with an addtocartform link, which you can use to add the item to a cart. Other APIs require client developers to construct their own URIs to interact with the API, but ours doesn't. All you need to do is follow the API's workflows to interact with the system. Second, constructing your own URIs can be dangerous because if Cortex is upgraded your client app will break. Coding your client app to follow workflows decouples your code from the API, so there is less chance your client will break if the API is upgraded.

Don't Construct Forms

First, Cortex constructs the form for you so there is no need to create your own. Second, constructing your own forms can be dangerous because if the API is upgraded and the forms change, your constructed forms will break.

Minimize Requests

The less calls you make to Cortex, the faster your application will work. You can reduce the number of calls by utilizing FollowLocation and Zoom.

Start from Entry Points

Build your app to access at Cortex through its API Entry Points.