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.

Learning to use Cortex

Learning to use Cortex

Before you do anything, take a look at our Request Entry Points to get a basic understanding of how to access Cortex resources. Then follow the steps outlined below to make your first Cortex call to retrieve a customer's cart.

Step 1: Get an Access Token

Start by getting a Cortex access token. All customers, both PUBLIC customers (customers without an account) and REGISTERED customers (customers with an account), require access tokens. Without an access token, the client application will receive a 401 Unauthorized when it tries to access a resource.

To get an access token, follow the directions in these sections:

Step 2: Make a Request

Make the following request to retrieve the customer's cart.

1. Construct a GET request to the carts resource, set the content-type to application/json, and set the requests authorization header to Bearer with the customer's access key.

Content-Type: application/json
Authorization: Bearer c7326d79-9273-4820-b45d-587f90d1dc9b
GET http://api.elasticpath.net/cortex/carts/mobee/default
The user's cart returns in a JSON object in the response body:
{
    "self": {
        "type": "elasticpath.carts.cart",
        "uri": "/commerce-legacy/carts/mobee/guz=",
        "href": "http://api.elasticpath.net/cortex/carts/mobee/guz="
    },
    "total-quantity": 0,
    "links": [
        {
            "type": "elasticpath.totals.total",
            "rel": "total",
            "rev": "cart",
            "href": "http://api.elasticpath.net/cortex/totals/carts/mobee/guz=",
            "uri": "/commerce-legacy/totals/carts/<scope>/<cartid>"
        },
        {
            "type": "elasticpath.orders.order",
            "rel": "order",
	     "rev": "cart",
            "href": "http://api.elasticpath.net/cortex/orders/carts/mobee/guz=",
            "uri": "/commerce-legacy/orders/carts/mobee/guz="
        },
        {
            "type": "elasticpath.collections.links",
            "rel": "lineitems",
            "rev": "cart",
            "href": "http://api.elasticpath.net/cortex/carts/mobee/guz=/lineitems",
            "uri": "/commerce-legacy/carts/mobee/guz=/lineitems"
        }
    ]
}

Step 3: Make API Calls

Now that you've made your first API call, the rest is up to you! Remember, all your calls require an access token, so make sure to include it in the response header.

Recommended Reading for Getting Started

To get a better understanding of how our API works, we recommend reading the following: