Managing Transactions
Query a consumer's debt-related transactions, for example payment history
List a Consumer’s (Student Loan) Transactions
Once a consumer has linked student loans via Nexus, you can query all of their transactions in a paginated list:
query($uuid: UUID4!) {
consumer(uuid: $uuid) {
transactions {
nodes {
uuid
date
type
rawType
total
institutionName
}
pageInfo {
hasNextPage
}
totalCount
}
}
}
With the following variables, for example:
{
"uuid": "fff7ff9f-0f2b-4d99-89ec-40d237b95d4d"
}
Updated 9 months ago