POST api/GetUserTheme/{psno}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
psno

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of classTheme
NameDescriptionTypeAdditional information
psno

string

None.

theme

string

None.

lastUpdated

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "psno": "sample string 1",
    "theme": "sample string 2",
    "lastUpdated": "sample string 3"
  },
  {
    "psno": "sample string 1",
    "theme": "sample string 2",
    "lastUpdated": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfclassTheme xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Employee_Master_API.DAO">
  <classTheme>
    <lastUpdated>sample string 3</lastUpdated>
    <psno>sample string 1</psno>
    <theme>sample string 2</theme>
  </classTheme>
  <classTheme>
    <lastUpdated>sample string 3</lastUpdated>
    <psno>sample string 1</psno>
    <theme>sample string 2</theme>
  </classTheme>
</ArrayOfclassTheme>