Skip to main content

Documentation Index

Fetch the complete documentation index at: https://help.mytruv.com/llms.txt

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

The Income response aggregates income data from all connected payroll providers and bank accounts. Employment records are merged and deduplicated, with a data_source field to identify the origin.

Response attributes

AttributeTypeDescription
employmentsarray of objectsCombined employment and income records from all connected sources
Each employment record includes a data_source field with value payroll or financial_accounts to identify its origin.

Endpoints


Example response

{
  "employments": [
    {
      "data_source": "payroll",
      "employer": "Acme Corp",
      "title": "Software Engineer",
      "status": "active",
      "annual_income": "120000.00",
      "pay_frequency": "BIWEEKLY",
      "start_date": "2022-01-15"
    }
  ]
}