Overview
Noon is the dominant marketplace in the UAE + Saudi Arabia + Egypt. The Automize Noon connector covers seller operations – catalog, orders, returns, stock updates, settlements, and performance metrics.
- Regions: UAE (noon.com), Saudi Arabia (noon.com/saudi-en), Egypt (noon.com/egypt-en). API endpoint differs per region.
- Plans: Seller plans – onboard via partners.noon.com. API access included.
Setting up the connection
Auth type: API Key.
- Sign in to Noon Seller Hub → Account → API Settings.
- Generate API key + Seller Code.
- In Automize, open Settings → Connectors → Noon → Add connection. Paste key + Seller Code + region.
Find your credentials at https://partners.noon.com/.
Rate limits
Noon enforces ~60 req/min/seller. Connector retries 429 with backoff.
Data model
Marketplace primitives:
Seller (your account) ─┬─ Products (SKUs in Noon's catalog)
├─ Orders ── Returns
├─ Settlements (financial reconciliation)
└─ Performance MetricsAvailable operations
10 operations available. Click any row to jump to its detail.
| Operation | Category | What it does |
|---|---|---|
| Get order | General | Get order details by order ID from Noon. |
| Get performance | General | Get seller performance metrics from Noon. |
| Get product | General | Get product details by SKU from Noon. |
| Get return | General | Get return details by return ID from Noon. |
| List orders | General | List all orders from Noon marketplace. |
| List products | General | List all catalog products on Noon. |
| List returns | General | List all returns from Noon. |
| List settlements | General | List financial settlements from Noon. |
| Update product | General | Update product details by SKU on Noon. |
| Update stock | General | Update stock quantity for a product on Noon. |
Operations
Get order
Get order details by order ID from Noon.
| Parameter | Required | Type | Description |
|---|---|---|---|
Order ID orderId | Yes | text | |
Order Id order_id | Yes | text |
Tips
- orderId. Returns order + line items + customer (anonymised) + shipping address.
Get performance
Get seller performance metrics from Noon.
No input parameters.
Tips
- Seller-level KPIs: order defect rate, cancellation rate, late shipment rate. Used by Noon's seller tier scoring.
Get product
Get product details by SKU from Noon.
| Parameter | Required | Type | Description |
|---|---|---|---|
SKU sku | Yes | text |
Tips
- sku. Returns product + stock + price + status.
Get return
Get return details by return ID from Noon.
| Parameter | Required | Type | Description |
|---|---|---|---|
Return ID returnId | Yes | text | |
Return Id return_id | Yes | text |
Tips
- returnId. Returns reason + items + RTV status.
List orders
List all orders from Noon marketplace.
No input parameters.
Tips
- Filter by date range, status (NEW, READY_TO_SHIP, SHIPPED, DELIVERED, CANCELLED, RETURNED).
List products
List all catalog products on Noon.
No input parameters.
Tips
- Returns your catalog. Page via limit + offset.
List returns
List all returns from Noon.
No input parameters.
Tips
- Returns initiated by customers. Filter by status.
List settlements
List financial settlements from Noon.
No input parameters.
Tips
- Financial reconciliation per period. Returns gross sales + Noon's commission + refunds + net payout.
Update product
Update product details by SKU on Noon.
| Parameter | Required | Type | Description |
|---|---|---|---|
SKU sku | Yes | text | |
Title title | Yes | text | |
Price price | Yes | text | |
Stock quantity stock | Yes | number | |
Description description | Yes | textarea |
Tips
- sku + title + price + stock + description. PUT-style.
Update stock
Update stock quantity for a product on Noon.
| Parameter | Required | Type | Description |
|---|---|---|---|
SKU sku | Yes | text | |
Quantity quantity | Yes | number | |
Fulfillment type fulfillmentType | Yes | text | |
Fulfillment Type fulfillment_type | No | text |
Tips
- sku + quantity + fulfillmentType (FBN_SAMEDAY, FBN_STD, FBP_BIG, etc.).
- Critical for keeping listings live – out-of-stock listings get suppressed.
FAQ
- FBN vs FBP – what's the difference?
- FBN (Fulfilled By Noon) – Noon handles storage + shipping from their warehouses. FBP (Fulfilled By Partner) – you ship from your own warehouse. Different fulfillmentType codes apply to each.
- Sandbox?
- Noon provides UAT credentials separately – request through partners.noon.com.
- Returns handling?
- Customer-initiated returns flow through List Returns. Approve or contest via Noon UI; API exposes status only.