curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/platform/external-accounts \
--header 'Authorization: Basic <encoded-value>'{
"accounts": [
{
"id": "ExternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965",
"status": "ACTIVE",
"currency": "USD",
"accountInfo": {
"accountType": "US_ACCOUNT",
"accountNumber": "123456789",
"routingNumber": "987654321",
"accountCategory": "CHECKING",
"beneficiary": {
"beneficiaryType": "INDIVIDUAL",
"fullName": "John Michael Doe",
"birthDate": "1990-01-15",
"nationality": "US",
"address": {
"line1": "123 Main Street",
"postalCode": "94105",
"country": "US",
"line2": "Apt 4B",
"city": "San Francisco",
"state": "CA"
}
},
"bankName": "Chase Bank"
},
"customerId": "Customer:da459a29-1fb7-41ce-a4cb-eb3a3c9fd7a7",
"platformAccountId": "acc_123456789",
"defaultUmaDepositAccount": false
}
]
}Retrieve a list of all external accounts that belong to the platform, as opposed to an individual customer.
These accounts are used for platform-wide operations such as receiving funds from external sources or managing platform-level payment destinations.
curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/platform/external-accounts \
--header 'Authorization: Basic <encoded-value>'{
"accounts": [
{
"id": "ExternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965",
"status": "ACTIVE",
"currency": "USD",
"accountInfo": {
"accountType": "US_ACCOUNT",
"accountNumber": "123456789",
"routingNumber": "987654321",
"accountCategory": "CHECKING",
"beneficiary": {
"beneficiaryType": "INDIVIDUAL",
"fullName": "John Michael Doe",
"birthDate": "1990-01-15",
"nationality": "US",
"address": {
"line1": "123 Main Street",
"postalCode": "94105",
"country": "US",
"line2": "Apt 4B",
"city": "San Francisco",
"state": "CA"
}
},
"bankName": "Chase Bank"
},
"customerId": "Customer:da459a29-1fb7-41ce-a4cb-eb3a3c9fd7a7",
"platformAccountId": "acc_123456789",
"defaultUmaDepositAccount": false
}
]
}API token authentication using format <api token id>:<api client secret>
Filter by currency code
Successful operation
List of external accounts matching the filter criteria
Show child attributes
The system generated identifier of this account
"ExternalAccount:e85dcbd6-dced-4ec4-b756-3c3a9ea3d965"
Status of the external account
PENDING, ACTIVE, UNDER_REVIEW, INACTIVE "ACTIVE"
The ISO 4217 currency code
"USD"
Show child attributes
US_ACCOUNT "US_ACCOUNT"
US bank account number
"123456789"
ACH routing number (9 digits)
9"987654321"
Type of account (checking or savings)
CHECKING, SAVINGS "CHECKING"
Show child attributes
INDIVIDUAL "INDIVIDUAL"
Individual's full name
"John Michael Doe"
Date of birth in ISO 8601 format (YYYY-MM-DD)
"1990-01-15"
Country code (ISO 3166-1 alpha-2)
"US"
Show child attributes
Street address line 1
"123 Main Street"
Postal/ZIP code
"94105"
Country code (ISO 3166-1 alpha-2)
"US"
Street address line 2
"Apt 4B"
City
"San Francisco"
State/Province/Region
"CA"
Name of the bank
"Chase Bank"
The customer this account is tied to, or null if the account is on behalf of the platform.
"Customer:da459a29-1fb7-41ce-a4cb-eb3a3c9fd7a7"
Optional platform-specific identifier for this account
"acc_123456789"
Whether this account is the default UMA deposit account for the customer. If true, incoming UMA payments to this customer's UMA address will be automatically deposited into this account instead of the primary internal account. False if not provided. Note that at most, one external account can be set as the default UMA deposit account for a customer. If there is no default UMA deposit account, incoming UMA payments will be deposited into the primary internal account for the customer.
false
Was this page helpful?