Account

"Account" refers to a Customer's account.

Property Type Description
accountId long Unique identifier of this account
sourceAccountId string Source account identifier of this account
name string Name of the account
isPrimary boolean Whether or not this is the primary account
portfolioName string The program name of this account's portfolio
portfolioId int The ID of this account's portfolio

Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{
   "accounts":[
      {
         "accountId":442,
         "sourceAccountId":"source_442",
         "name":"debit card",
         "isPrimary":true,
         "portfolioName":"Cash Back Rewards",
         "portfolioId":1
      },
      {
         "accountId":823,
         "sourceAccountId":"1234",
         "name":"credit card",
         "isPrimary":false,
         "portfolioName":"Cash Back Rewards",
         "portfolioId":2
      }
   ]
}