SourceAccount
Payitoff API: SourceAccount
Schema
Contact us if you're interested in using this feature.
A borrower's source account is the source of funding to pay down student loans. These may be checking, savings or brokerage accounts.
Use
SourceAccountPayload
for to create aSourceAccount
When creating
SourceAccount
objects via API, send aSourceAccountPayload
as your request body. You'll receive aSourceAccount
as a response.
Schema Definition
Property | Type | Format | Description |
---|---|---|---|
account_number_last_4 | string | The last 4 digits of a borrower's account number at a financial institution. | |
id | string | uuid | A UUID value that identifies a SourceAccount . |
name_on_account | string | Name of account at financial institution. | |
payments_supported | boolean | Can this account be used to make payments? | |
routing_number | string | The borrower's routing number at a financial institution. It must be exactly 9 digits in length. | |
type | string | brokerage checking savings | Type of account at a borrower's financial institution. |
Example
{
"account_number_last_4": "4287",
"id": "1d40b0bd-46c4-4cde-9467-5b000800aee9",
"name_on_account": "John Q Public",
"payments_supported": true,
"routing_number": "123456789",
"type": "checking"
}
Updated 9 months ago