Retrieve Report
Retrieves the income report data and a url to the report pdf of a completed request.
Retrieve Report
GET
https://api.numaly.com/v1/requests/{id}
Note: An incomplete report will return empty report fields. Make sure to check for an awaiting screening
status before parsing the data.
Path Parameters
id
string
Either a verification request id
or your request_id
Response Schema
All fields are calculated using data retrieved between the period from_date
and to_date
. All empty field values will return null
Field
Type
Response
id
string
id of the verification request
request_id
string
id of the verification request set by you
from_date
string
How far back the data the income report is generated is generated from.
to_date
string
Date of the most recent transaction the income report is generated from.
days_retrieved
number
Total days of transactions the income report is generated from. It is the delta days of from_date
and to_date
.
months_retrieved
number
Total months of transactions the income report is generated from. It is the delta months of from_date
and to_date
.
requester_name
string
Name displayed to applicants when completing an income verification. Set by you.
first_name
string
First name of the applicant.
last_name
string
Last name of the applicant.
currency
string
Currency the income report is denoted in.
status
string
Status of the verification request. Either 'awaiting response'
, 'awaiting screening'
, 'accepted'
, 'rejected'
.
opened
boolean
Was a sent verification request click on by the applicant. Note: this defaults to false
for all verifications started from your link.
reference
string
Reference of the verification request. Set by you.
property_rent
number
Rent for the applied property.
email
string
Applicants email.
phone_number
number
Applicant mobile number.
employer
string
Applicants employment (supplied by them).
total_income
number
Applicants total income in the period between from_date
and to_date
.
income_projection_12_months
number
A 12 month income projection if the total income report has less than 12 months of data. (12 ÷months_retrieved
) x total_income
average_monthly_income
number
Average monthly income between the period from_date
and to_date
.
average_monthly_income_3_months
number
Average monthly income in the last 3 months.
total_recurring_income
number
Total recurring income between the period from_date
and to_date
average_monthly_income_recurring
number
Average monthly income in the past
total_non_recurring_income
number
Total non-recurring Income between the period from_date
and to_date
.
average_monthly_income_non_recurring
number
Average monthly non-recurring income between from_date
and to_date
.
total_deposits
number
Total number of deposits into applicants accounts between from_date
and to_date
.
total_recurring_deposits
number
Total number of deposits for recurring income between from_date
and to_date
.
total_non_recurring_deposits
number
Total number of deposits for non-recurring income between from_date
and to_date
.
income_rent_multiple
number
average_monthly_income
÷ property_rent
.
expense_income_ratio
number
average_monthly_expenses
÷ average_monthly_income
average_monthly_expenses
number
Average total expenses per month between the period from_date
and to_date
.
average_days_between_rent_payments
number
The average number of days the between each of the applicants rent payments.
applicant_note
string
A comment left by the applicant on the report.
account_names
string
The names on the applicants bank accounts.
sources
array
An array objects containing information on each of the applicants income sources.
accounts
array
An array objects containing information on each of the applicants accounts with their banks (e.g Checking, Savings ..)
rent_payment_history
array
An array of objects containing each of the applicants rent payments between the period from_date
and to_date
.
meta_data
object
The data you supplied when creating your verification link (see start verification tab)
request_date
string
Date verification request was sent to applicant (YYYY-MM-DD).
completed_date
string
Date verification request was completed by applicant
(YYYY-MM-DD).
report_url
string
Url to of the income report pdf if it was completed otherwise null.
paystub_url
string
Url of the users paystub if they used to fallback option otherwise null
Sources Schema
Field
Type
Description
name
String
Name of the income source.
amount
number
Total income from source.
recurring
number
Total recurring income from source
non-recurring
number
Total non-recurring income from source
Accounts Schema
Field
Type
Description
account_id
string
Id for the account.
account_type
string
Type of account eg. Checking, Savings..
available_balance
number
Balance available for use.
current_balance
number
Balance unavailable for use.
bank
string
Name of financial institution the account is with.
account_name
string
Name of the account (e.g Freedom Saver etc)
average_balance
number
Average balance of the account between the period from_date
and to_date
.
Rent Payment History Schema
Field
Type
Description
amount
number
Rent amount paid by applicant.
date
string
Date of rent payment.
Last updated
Was this helpful?