Get list of users' annual balance
This GET endpoint is used to get tax information for a specific user identified by their user_token. It provides access to historical tax attribute values as well as the ability to perform attribute velocity checks. <br> To use this endpoint, replace user_token in the URL path with the actual user token of the user whose tax information you want to retrieve. This endpoint's purpose is to aid in the identification of users with matching attribute values and to prevent fraudulent activities by monitoring unusual attribute value changes over time. It compares the provided attribute value to the historical attribute values for the same user to see if it meets the velocity check criteria.
Query parameters
If specified, only show users whose total balance exceeds the provided amount
The year for which we would like to obtain tax information for. If none provided, defaults to previous year.
Optional user token. When provider, it will return the tax amount for the provided users. For more than one user, provided the tokens comma separated.
Response
Succesful operation.
Example response
[
{
"user_token": "123e4567-e89b-12d3-a456-426614174000",
"address1": "2000 main st",
"address2": "apt D",
"city": "Santa Monica",
"state_province": "CA",
"postal_code": 90405,
"country": "USA",
"first_name": "John",
"last_name": "Doe",
"email": "jdoe@gmail.com",
"mobile_number": "16502000226",
"business_name": "ABC Company",
"date_of_birth": "1975-03-24",
"balance": 1500,
"tax_id": "123-45-678"
}
]