Financial Account Revisions
Overview
The FinancialAccount object reveals financial account history, which provides a detailed chronological log of updates and activities.
This log captures key changes across various financial account fields, ensuring that you, your team, and account holders can troubleshoot and audit changes precisely. By maintaining a history of updates to critical fields, the API supports enhanced transparency, security, and operational efficiency.
Use cases
Highnote’s Financial Account History feature supports the following use cases:
- Fraud Detection and Prevention: By monitoring updates to account status and owner information, you can quickly identify and respond to suspicious activities.
- Regulatory Compliance and Reporting: Detailed logs support compliance with financial regulations by providing auditable records of all account activities and changes.
- Customer Support and Account Management: Access to a comprehensive history of account updates and activities enables customer service representatives to efficiently resolve inquiries and issues, offering a superior customer experience.
- Financial Analysis and Product Development: Analysis of account activity and feature utilization can inform product improvements, tailored financial services, and targeted marketing strategies.
Find financial account revisions
Use the following FindFinancialAccount query to find financial account history:
FindFinancialAccountRevisionSnapshot
Query
query FindFinancialAccountRevisionSnapshot(
$id: ID!
$first: Int
$after: String
) {
node(id: $id) {
... on FinancialAccount {
id
revisionSnapshots(first: $first, after: $after) {
edges {
cursor
node {
__typename
... on FinancialAccountSnapshot {
id
financialAccountAttributes
accountStatus
cardProduct {
id
name
}
externalId
name
application {
id
applicationState {
status
}
}
updatedAt
}
}
}
}
}
}
}
Variables
{
"id": "NODE_ID",
"first": 10,
"after": "CURSOR"
}
⚠️ Please login to execute queries. Visit the dashboard to authenticate.
Result
{
"data": {
"node": {
"id": "ac_c022b9c66de3299c4f06a03293106c65234b",
"revisionSnapshots": {
"edges": [
{
"node": {
"__typename": "FinancialAccountSnapshot",
"id": "acrev_24ik1fi02acc022b9c66de3299c4f06a03293106c65234b",
"financialAccountAttributes": [
"DELINQUENT"
],
"accountStatus": "ACTIVE",
"cardProduct": {
"id": "pd_cf9a462f044d421788668adde6df2131",
"name": "consumer-credit_7-25-24",
"__typename": "CardProduct"
},
"externalId": "4PBJLKYYHD",
"name": "fin acct cc_7-25-24, number 2",
"application": {
"id": "ap_22pcgm63eedd590d8f405a8c2e8aa573bb0a38",
"applicationState": null,
"__typename": "AccountHolderCardProductApplication"
},
"updatedAt": "2024-08-14T23:06:30.918Z"
},
"__typename": "FinancialAccountSnapshotEdge"
}
],
"__typename": "FinancialAccountSnapshotConnection"
}
}
},
"extensions": {
"requestId": "0d2e1aab-d324-981c-a705-50826c5541d5",
"rateLimit": {
"cost": 83,
"limit": 60060,
"remaining": 59977
}
}
}