Customers
Customer management commands. All commands require the global -r <region> flag.
customers search
Search customers by name, email, or company.
Usage: efision -r <region> customers search -q <query>
| Flag | Short | Required | Description |
|---|---|---|---|
--query | -q | Yes | Search keyword (name, email, or company) |
Example:
efision -r au customers search -q "Smith"
Customer Search
============================================================
Region: AU
Query: Smith
Searching... done.
Found 3 customers:
----------------------------------------------------------------------------------------------------
ID Name Email Company
----------------------------------------------------------------------------------------------------
101 John Smith john@example.com Smith Auto Parts
102 Jane Smith jane@smithco.com Smith & Co
customers orders
Get orders for a specific customer by ID.
Usage: efision -r <region> customers orders -c <customer_id>
| Flag | Short | Required | Description |
|---|---|---|---|
--customer-id | -c | Yes | Customer ID (numeric) |
Example:
efision -r au customers orders -c 101
Customer Orders
============================================================
Region: AU
Customer ID: 101
Fetching orders... done.
Found 5 orders:
----------------------------------------------------------------------------------------------------
Order No Amount Status Date
----------------------------------------------------------------------------------------------------
SO-20240101 $1,250.00 Completed 2024-01-01
SO-20240215 $800.00 Shipped 2024-02-15
...