π¦Get External Account by ID
Name
Value
{
id: string;
type: string;
name: string;
referenceId: string;
bank: {
name: string;
address: string;
city: string;
state: string;
postalCode: string;
country: string;
iban: string;
bic: string;
owner: {
name: string | null; // concat of firstName + lastName
firstName: string | null; // only for individual
lastName: string | null; // only for individual
email: string;
businessName: string | null; // only for business type
};
};
createdAt: string;
updatedAt: string;
customerId: string;
},
{
id: string;
type: string;
name: string;
referenceId: string;
wallet: {
address: string;
chain: string;
isManaged: boolean
};
createdAt: string;
updatedAt: string;
customerId: string;
};Last updated