Account
"Account" refers to a Customer's account.
| Property | Type | Required | Description |
|---|---|---|---|
| sourceAccountId | string | Required | Unique identifier for the account |
| sourceCustomerIds | string[] | Required | Unique identifier for all customers associated with the account |
| primarySourceCustomerId | string | Required | Unique identifier for the primary account owner |
| status | AccountStatus | Required | Account status |
| type | AccountType | Required | Account type |
| sourcePortfolioId | string | Required | Unique identifier of the portfolio in which the account is enrolled |
| accountOpenDate | string | Required | Date and time of account creation in ISO-8601 format |
| accountCloseDate | string | Not required | Date and time of account closure in ISO-8601 format, if account is CLOSED. Null if account is OPEN |
| cards | Card[] | Required | Array of Cards |
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | |