You can fetch and search all customer orders using the API endpoints — not just orders for a specific customer. Here's how:
1. Create a Connector
Go to Order Intake → Connectors.
Create a New Connector.
Choose API Connector.
Select All Customers.
Give it a name, e.g.,
Customer-Agnostic Connector
.Copy your X-API-KEY.
Click Create.
Now you have your endpoints ready.
2. Set Up Your API Requests
A. Get a Single Order
Method:
GET
Endpoint: Use the
Get Order
endpoint from your connector.Headers:
X-API-KEY
: [your copied key]
Body: None required.
Steps:
Replace the
{orderId}
in the URL with an actual order ID.Click Send.
You’ll receive the order details.
B. Search for Multiple Orders
Method:
POST
Endpoint: Use the
Search Orders
endpoint from your connector.Headers:
X-API-Key
: [your copied key]
Body: Include your search filters in JSON.
Steps:
Paste the search endpoint.
Set method to
POST
.Add the JSON body.
Click Send.
You’ll get a list of matching orders.
Common Mistakes to Avoid
Wrong method:
GET
for single order,POST
for search.No API Key: Always include your
X-API-KEY
in the header.Missing Body for Search: Search needs a JSON body with your filters.
📝 Not what you needed?
Help us improve this article, send us an email to [email protected] — please include the article title.