Skip to main content

Documentation Index

Fetch the complete documentation index at: https://truv.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Manage bank accounts for Direct Deposit Switching (DDS) and Paycheck Linked Lending (PLL) with the endpoints in this section. Access information from bank accounts in a user’s payroll account during Verification of Income and Employment (VOIE) before making deposit switches.

Attributes

The values in these sections are for bank account objects.
AttributeTypeDescription
account_numberstringBank account number
routing_numberstringRouting number
account_namestringUser-friendly account name for bank account
account_typestringAccount type of bank account, includes two types: C - Checking account, S - Saving account
deposit_typestringDeposit type of bank account, three types of deposits available: E - Entire paycheck, P - Percentage of paycheck, A - Fixed amount from paycheck
deposit_valuestringDeposit value of selected bank account
bank_namestringBank name

Endpoints

The two items below are the available endpoints.
  • List all bank accounts

Example response

This JSON object is a sample payload for the endpoint.
[
  {
    "account_number": "11114623",
    "routing_number": "101014378",
    "account_name": null,
    "account_type": "C",
    "deposit_type": "A",
    "deposit_value": "1604.98",
    "bank_name": "Sandbox Bank"
  },
  {
    "account_number": "11111308",
    "routing_number": "101013399",
    "account_name": null,
    "account_type": "C",
    "deposit_type": "A",
    "deposit_value": "25.00",
    "bank_name": "Sandbox Bank"
  }
]