GET GetStatementsByPeriod?year={year}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| year | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
YUBsStatementRepository| Name | Description | Type | Additional information |
|---|---|---|---|
| successful | boolean |
None. |
|
| message | string |
None. |
|
| data | Collection of YUBsInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"successful": true,
"message": "sample string 2",
"data": [
{
"periodId": 1,
"description": "sample string 2",
"statementDate": "2026-02-03T21:06:57.9169732-06:00",
"dBABillingPeriodId": 4
},
{
"periodId": 1,
"description": "sample string 2",
"statementDate": "2026-02-03T21:06:57.9169732-06:00",
"dBABillingPeriodId": 4
}
]
}
application/xml, text/xml
Sample:
<YUBsStatementRepository xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.YottaResident.WebAPIs.Services">
<data>
<YUBsInfo>
<dBABillingPeriodId>4</dBABillingPeriodId>
<description>sample string 2</description>
<periodId>1</periodId>
<statementDate>2026-02-03T21:06:57.9169732-06:00</statementDate>
</YUBsInfo>
<YUBsInfo>
<dBABillingPeriodId>4</dBABillingPeriodId>
<description>sample string 2</description>
<periodId>1</periodId>
<statementDate>2026-02-03T21:06:57.9169732-06:00</statementDate>
</YUBsInfo>
</data>
<message>sample string 2</message>
<successful>true</successful>
</YUBsStatementRepository>