Portal

A Customer object represents a customer of your business.

A Customer has a balance and can deposit and withdraw funds from it. Additionally, Customers can manage their payment methods.

Customer Attributes

FieldTypeDescriptionExample value
idstringUnique identifier for the customer.2aa3d415-8256-4d0e-97a1-7cd0a09e0230
merchantIdstringIdentifier of the merchant for this customer.83ac5214-5c2b-4d41-83a2-ffc58903f392
balanceobjectBalance object containing details about the customer balance.
emailstringThe customer email address.
phonestringThe customer phone number.tel:+1-510-123-4567
billingDetailsobjectBilling details object containing optional billing details about the user, if available.
metadataobjectA set of key-value pairs that you can attach to a customer.
ansaMetadataobjectAnsa provides a set of key-value pairs containing user data. This includes the relevant payment service provider (PSP) user ID and the user's referral code.
statusstringThe customer status.

Possible values are:
- active
- deactivated
- closed

Balance Attributes

The Customer object has an associated Balance object that will also be returned when you request the Customer.

ℹ️

Amounts are integers

All amount parameters and returned values are integers. These amounts represent the lowest denomination of the provided currency code, such as cents for USD. For example, "amount": 1000 would indicate an amount of $10.00.

FieldTypeDescriptionExample value
amountintegerThe integer amount in the lowest denomination of the provided currency code.500 (equivalent to $5)
currencystringThree letter ISO currency code, in lowercase. If not set, defaults to usd.usd

Billing Details Attributes

A Customer object contains Billing Details object when the information is available.

FieldTypeDescriptionExample value
firstNamestringCustomer first name.
lastNamestringCustomer last name.
addressobjectAn object representing a physical address.

Attributes are:
- line1 string
- line2 string
- city string
- state string
- postalCode string
- country string
{ "line1": "1234 Ansa St.", "line2": "suite 123", "city": "San Francisco", "state": "CA", "postalCode": "94100", "country": "USA", }