Some institutions allow developers to access account statements associated with a particular member. The process for fetching and then reading account statements is much like standard aggregation, and it may trigger multi-factor authentication.
Endpoint: GET
/users/:user_guid/members/:member_guid/statements
This endpoint is used to get an array of available statements.
curl -X GET /users/:user_guid/members/:member_guid/statements \\
-H 'Content-Type: application/json' \\
-H "Authorization: Bearer {access_token}" \\
{
"statements": [
{
"account_guid": "ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1",
"content_hash": "ca53785b812d00ef821c3d94bfd6e5bbc0020504410589b7ea8552169f021981",
"created_at": "2016-10-13T18:08:00Z",
"guid": "STA-737a344b-caae-0f6e-1384-01f52e75dcb1",
"member_guid": "MBR-7c6f361b-e582-15b6-60c0-358f12466b4b",
"updated_at": "2016-10-13T18:09:00Z",
"uri": "",
"user_guid": "USR-fa7537f3-48aa-a683-a02a-b18940482f54"
}
],
"pagination": {
"current_page": 1,
"per_page": 25,
"total_entries": 1,
"total_pages": 1
}
}
Endpoint: GET
/users/:user_guid/members/:member_guid/statements/:statement_guid
This endpoint is used to read a JSON representation of the statement.
curl -X GET /users/:user_guid/members/:member_guid/statements/:statement_guid \\
-H 'Content-Type: application/json' \\
-H "Authorization: Bearer {access_token}" \\