Javascript
import Ivy from '@getivy/node-sdk'; const client = new Ivy({ apiKey: 'My API Key', }); const response = await client.customers.search({ email: 'email' }); console.log(response.count);
{ "items": [ { "id": "<string>", "emailAddress": "<string>", "bankAccounts": [ { "last4digits": "<string>", "bank": { "id": "<string>", "logo": "<string>", "name": "<string>" } } ] } ], "count": 123, "skip": 123, "hasNext": true }
Search for customers you have previously created using filters, e.g. by email.
API key for authentication
Successful response
The response is of type object.
object
Was this page helpful?