HomeGuidesAPI Reference

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 a SourceAccount

When creating SourceAccount objects via API, send a SourceAccountPayload as your request body. You'll receive a SourceAccount as a response.

Schema Definition

PropertyTypeFormatDescription
account_number_last_4stringThe last 4 digits of a borrower's account number at a financial institution.
idstringuuidA UUID value that identifies a SourceAccount.
name_on_accountstringName of account at financial institution.
payments_supportedbooleanCan this account be used to make payments?
routing_numberstringThe borrower's routing number at a financial institution.

It must be exactly 9 digits in length.
typestringbrokerage
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"
}