Search for customers in RepairShopr by email or phone
I search for customers in RepairShopr using email or phone number. I can perform both exact and partial searches.
Use this when you need to:
Required API base URL (set in environment):
VITE_REPAIRSHOPR_SUBDOMAIN - your RepairShopr subdomainVITE_REPAIRSHOPR_API_KEY - your API keyParameters:
query (string) - Search term (email or phone)email (string, optional) - Exact email searchphone (string, optional) - Exact phone searchpage (integer, optional) - Page number, default 1Example call:
const result = await skill({ name: "repairshopr-customer-search" }, {
query: "[email protected]"
})
Response includes:
customers array with customer objects (id, firstname, lastname, email, phone, etc.)meta with pagination info