GET api/DisplayPeriod

Request Information

URI Parameters

None.

Body Parameters

DisplayPeriod
NameDescriptionTypeAdditional information
UserId

integer

None.

PeriodName

string

None.

PeriodCode

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "PeriodName": "sample string 2",
  "PeriodCode": 3
}

application/xml, text/xml

Sample:
<DisplayPeriod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
  <PeriodCode>3</PeriodCode>
  <PeriodName>sample string 2</PeriodName>
  <UserId>1</UserId>
</DisplayPeriod>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of DisplayPeriod
NameDescriptionTypeAdditional information
UserId

integer

None.

PeriodName

string

None.

PeriodCode

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserId": 1,
    "PeriodName": "sample string 2",
    "PeriodCode": 3
  },
  {
    "UserId": 1,
    "PeriodName": "sample string 2",
    "PeriodCode": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfDisplayPeriod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiForAndroid.Models">
  <DisplayPeriod>
    <PeriodCode>3</PeriodCode>
    <PeriodName>sample string 2</PeriodName>
    <UserId>1</UserId>
  </DisplayPeriod>
  <DisplayPeriod>
    <PeriodCode>3</PeriodCode>
    <PeriodName>sample string 2</PeriodName>
    <UserId>1</UserId>
  </DisplayPeriod>
</ArrayOfDisplayPeriod>