POST api/Employee/GetPreviousExperiance

Request Information

URI Parameters

None.

Body Parameters

PersonWorkExperienceViewModel
NameDescriptionTypeAdditional information
PersonWorkExperienceID

integer

None.

PersonId

integer

None.

CandidateID

integer

None.

Employer

string

None.

JobTitle

string

None.

StartDate

string

None.

EndDate

string

None.

IsInternal

boolean

None.

Comments

string

None.

Joblocation

string

None.

StartingCTC

string

None.

EndCTC

string

None.

FromDate

string

None.

ToDate

string

None.

IsCurrentEmployer

string

None.

EmployeeID

integer

None.

CurrencyCode

string

None.

Years

integer

None.

Months

integer

None.

Days

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "PersonWorkExperienceID": 1,
  "PersonId": 2,
  "CandidateID": 1,
  "Employer": "sample string 3",
  "JobTitle": "sample string 4",
  "StartDate": "sample string 5",
  "EndDate": "sample string 6",
  "IsInternal": true,
  "Comments": "sample string 8",
  "Joblocation": "sample string 9",
  "StartingCTC": "sample string 10",
  "EndCTC": "sample string 11",
  "FromDate": "sample string 12",
  "ToDate": "sample string 13",
  "IsCurrentEmployer": "sample string 14",
  "EmployeeID": 15,
  "CurrencyCode": "sample string 16",
  "Years": 17,
  "Months": 18,
  "Days": 19
}

application/xml, text/xml

Sample:
<PersonWorkExperienceViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRMSWebAPI.Transaction.Employee">
  <CandidateID>1</CandidateID>
  <Comments>sample string 8</Comments>
  <CurrencyCode>sample string 16</CurrencyCode>
  <Days>19</Days>
  <EmployeeID>15</EmployeeID>
  <Employer>sample string 3</Employer>
  <EndCTC>sample string 11</EndCTC>
  <EndDate>sample string 6</EndDate>
  <FromDate>sample string 12</FromDate>
  <IsCurrentEmployer>sample string 14</IsCurrentEmployer>
  <IsInternal>true</IsInternal>
  <JobTitle>sample string 4</JobTitle>
  <Joblocation>sample string 9</Joblocation>
  <Months>18</Months>
  <PersonId>2</PersonId>
  <PersonWorkExperienceID>1</PersonWorkExperienceID>
  <StartDate>sample string 5</StartDate>
  <StartingCTC>sample string 10</StartingCTC>
  <ToDate>sample string 13</ToDate>
  <Years>17</Years>
</PersonWorkExperienceViewModel>

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.