GET GetYUBsPeriods

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

YUBSPeriodsRepository
NameDescriptionTypeAdditional information
successful

boolean

None.

message

string

None.

data

Collection of YUBSPeriodsInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "successful": true,
  "message": "sample string 2",
  "data": [
    {
      "year": 1,
      "description": "sample string 2"
    },
    {
      "year": 1,
      "description": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<YUBSPeriodsRepository xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.YottaResident.WebAPIs.Services">
  <data>
    <YUBSPeriodsInfo>
      <description>sample string 2</description>
      <year>1</year>
    </YUBSPeriodsInfo>
    <YUBSPeriodsInfo>
      <description>sample string 2</description>
      <year>1</year>
    </YUBSPeriodsInfo>
  </data>
  <message>sample string 2</message>
  <successful>true</successful>
</YUBSPeriodsRepository>