Does Connex Ecommerce Analytics have a custom API?

How to use our analytics tool API

How do I access API docs?

We use Swagger:

https://connexreporting-api.azurewebsites.net/swagger/index.html

How do I get an API key?

Here are the steps:

  1. Go here: https://connexreporting-api.azurewebsites.net/swagger/index.html
  2. Go to account > login.
  3. Click try it now.
  4. In this example, we will use the demo account. In user name, enter demo@connexecommerce.com. In password, enter D3m02023!. Leave the other fields as is. 
  5. Click execute.
  6. Copy the access token from the response.
  7. On the top right of swagger, click authorize.
  8. Enter Bearer, a space and the access token.
  9. Click login.

How do I make my first API call for a grid?

In Connex, login as the demo account. Click Amazon and click the fees tab. We will make an API call for the grid. Here are the steps:

  1. Make an API call to API > AmazonFees > List.
  2. Enter these parameters:

{
  "pageNumber": 0,
  "orderBy": "ProductName",
  "direction": "ascending",
  "searchText": "",
  "orderStartDate": "1/1/2024",
  "orderEndDate": "8/1/2024"
}

Scroll down to see the data.

How do I make my first API call for a chart?

In Connex, login as the demo account. Click Amazon and dashboard. We will make an API call for fees by month chart. Here are the steps:

  1. Make an API call to API > AmazonDashboard> GetAmazonFeesBySummaryMonth.
  2. Enter these parameters:

{
  "userConnectionId": 0,
  "productId": 0,
  "beginDate": "1/1/2024",
  "endDate": "8/1/2024",
  "labels": [
    "string"
  ]
}

Scroll down to see the data.