GET api/SalarySetup/GetPayRollProfile

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

PayrollProfileResponsedata
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

PayRollProfileList

Collection of PayrollProfileObj

None.

Response Formats

application/json, text/json

Sample:
{
  "Responsecode": "sample string 1",
  "ResponseDescription": "sample string 2",
  "PayRollProfileList": [
    {
      "SN": 1,
      "email": "sample string 2",
      "Phone1": "sample string 3",
      "FullName": "sample string 4",
      "Role": "sample string 5"
    },
    {
      "SN": 1,
      "email": "sample string 2",
      "Phone1": "sample string 3",
      "FullName": "sample string 4",
      "Role": "sample string 5"
    }
  ]
}

application/xml, text/xml

Sample:
<PayrollProfileResponsedata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.ResponseObjs">
  <PayRollProfileList>
    <PayrollProfileObj>
      <FullName>sample string 4</FullName>
      <Phone1>sample string 3</Phone1>
      <Role>sample string 5</Role>
      <SN>1</SN>
      <email>sample string 2</email>
    </PayrollProfileObj>
    <PayrollProfileObj>
      <FullName>sample string 4</FullName>
      <Phone1>sample string 3</Phone1>
      <Role>sample string 5</Role>
      <SN>1</SN>
      <email>sample string 2</email>
    </PayrollProfileObj>
  </PayRollProfileList>
  <ResponseDescription>sample string 2</ResponseDescription>
  <Responsecode>sample string 1</Responsecode>
</PayrollProfileResponsedata>