Javascript
import Ivy from '@getivy/node-sdk'; const client = new Ivy({ apiKey: 'My API Key', }); const customer = await client.customers.retrieve({ id: 'id' }); console.log(customer.id);
{ "id": "<string>", "emailAddress": "<string>", "bankAccounts": [ { "last4digits": "<string>", "bank": { "id": "<string>", "logo": "<string>", "name": "<string>" } } ] }
Retrieve a Customer Object by its id.
API key for authentication
Successful response
The response is of type object.
object
Was this page helpful?