GET/account_statements/{account_statement_id}

Retrieve an Account Statement

Retrieves an Account Statement by its identifier. Use this operation to access the statement's period, balances, and associated File identifier for its PDF.

1 parameter
account_statement_idstringrequired
The identifier of the Account Statement to retrieve.

3 status codes
200Returns the Account Statement, including its Account identifier, statement period, starting and ending balances, and associated File identifier.
account_idstringrequired
The identifier for the Account this Account Statement belongs to.
created_atstringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account Statement was created.
ending_balanceintegerrequired
The Account's balance at the end of its statement period.
file_idstringrequired
The identifier of the File containing a PDF of the statement.
idstringrequired
The Account Statement identifier.
loanobjectrequired
The loan balances.
starting_balanceintegerrequired
The Account's balance at the start of its statement period.
statement_period_endstringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time representing the end of the period the Account Statement covers.
statement_period_startstringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time representing the start of the period the Account Statement covers.
typestringrequired
A constant representing the object's type. For this resource it will always be `account_statement`.
Allowed:account_statement
4XXReturned when the request encounters a client error.
5XXReturned when the service encounters a server error.

Error handling

The account_statement_id path parameter must identify the Account Statement to retrieve. Use the statement's identifier, not its associated Account or File identifier.