-
Connex for QuickBooks User Guide
- Getting Started with Connex for QuickBooks
- Remote Desktop (RDP)
- Customers Matching
- Inventory Site
- Inventory Sync
- Multicurrency
- Orders
- Price Levels
- Products
- Refunds
- Sales Tax
- Sales Orders
- Unit of Measure
- Web Connector
- Getting Started with Rules
- Rules Engine Common Rules
- FAQ
- Deposit Match
- Cost of Goods Sold
- Troubleshooting
-
Connex Ecommerce Analytics
-
Frequently Asked Questions
-
General Troubleshooting Guide
- Deposit Match Troubleshooting
- QuickBooks Desktop Error Messages
- Inventory Troubleshooting
- Incorrect Orders Troubleshooting
- Sales Tax Troubleshooting
- Web Connector Troubleshooting
- QuickBooks Online Error Messages
- Match Deposit Tool Troubleshooting
- Product Matching Troubleshooting
- Customer Matching Troubleshooting
- Rules Engine
- Orders from QuickBooks
- Payments Troubleshooting
- Company File
-
Connex for QuickBooks Integrations Guide
-
Rules Engine Guide
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:
- Go here: https://connexreporting-api.azurewebsites.net/swagger/index.html
- Go to account > login.
- Click try it now.
- 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.
- Click execute.
- Copy the access token from the response.
- On the top right of swagger, click authorize.
- Enter Bearer, a space and the access token.
- 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:
- Make an API call to API > AmazonFees > List.
- 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:
- Make an API call to API > AmazonDashboard> GetAmazonFeesBySummaryMonth.
- Enter these parameters:
{
"userConnectionId": 0,
"productId": 0,
"beginDate": "1/1/2024",
"endDate": "8/1/2024",
"labels": [
"string"
]
}
Scroll down to see the data.