POST api/Employee/GetPersonSkillExist

Request Information

URI Parameters

None.

Body Parameters

PersonSkillsViewModel
NameDescriptionTypeAdditional information
PersonSkillId

integer

None.

PersonId

integer

None.

Skill

string

None.

YearofExperience

decimal number

None.

Comments

string

None.

SkillRating

decimal number

None.

CertificationIND

boolean

None.

CertificationName

string

None.

IsCertificationRenewable

boolean

None.

UploadDocuments

string

None.

SkillAcquired

string

None.

SkillLastUsed

string

None.

EmployeeID

integer

None.

NotifyEmpInd

boolean

None.

NotifyHRInd

boolean

None.

NotifyRMInd

boolean

None.

NotifyOtherInd

boolean

None.

NotifyOtherEmailIDs

string

None.

DocumentPath

string

None.

SkillRatingText

string

None.

ValidFrom

string

None.

ValidTo

string

None.

RemidDaysBeforeExpiryDate

integer

None.

DocumentName

string

None.

ReferenceTypeID

decimal number

None.

DocumentNameDisplay

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PersonSkillId": 1,
  "PersonId": 2,
  "Skill": "sample string 3",
  "YearofExperience": 1.0,
  "Comments": "sample string 4",
  "SkillRating": 1.0,
  "CertificationIND": true,
  "CertificationName": "sample string 6",
  "IsCertificationRenewable": true,
  "UploadDocuments": "sample string 8",
  "SkillAcquired": "sample string 9",
  "SkillLastUsed": "sample string 10",
  "EmployeeID": 11,
  "NotifyEmpInd": true,
  "NotifyHRInd": true,
  "NotifyRMInd": true,
  "NotifyOtherInd": true,
  "NotifyOtherEmailIDs": "sample string 12",
  "DocumentPath": "sample string 13",
  "SkillRatingText": "sample string 14",
  "ValidFrom": "sample string 15",
  "ValidTo": "sample string 16",
  "RemidDaysBeforeExpiryDate": 17,
  "DocumentName": "sample string 18",
  "ReferenceTypeID": 1.0,
  "DocumentNameDisplay": "sample string 19"
}

application/xml, text/xml

Sample:
<PersonSkillsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRMSWebAPI.Transaction.Employee">
  <CertificationIND>true</CertificationIND>
  <CertificationName>sample string 6</CertificationName>
  <Comments>sample string 4</Comments>
  <DocumentName>sample string 18</DocumentName>
  <DocumentNameDisplay>sample string 19</DocumentNameDisplay>
  <DocumentPath>sample string 13</DocumentPath>
  <EmployeeID>11</EmployeeID>
  <IsCertificationRenewable>true</IsCertificationRenewable>
  <NotifyEmpInd>true</NotifyEmpInd>
  <NotifyHRInd>true</NotifyHRInd>
  <NotifyOtherEmailIDs>sample string 12</NotifyOtherEmailIDs>
  <NotifyOtherInd>true</NotifyOtherInd>
  <NotifyRMInd>true</NotifyRMInd>
  <PersonId>2</PersonId>
  <PersonSkillId>1</PersonSkillId>
  <ReferenceTypeID>1</ReferenceTypeID>
  <RemidDaysBeforeExpiryDate>17</RemidDaysBeforeExpiryDate>
  <Skill>sample string 3</Skill>
  <SkillAcquired>sample string 9</SkillAcquired>
  <SkillLastUsed>sample string 10</SkillLastUsed>
  <SkillRating>1</SkillRating>
  <SkillRatingText>sample string 14</SkillRatingText>
  <UploadDocuments>sample string 8</UploadDocuments>
  <ValidFrom>sample string 15</ValidFrom>
  <ValidTo>sample string 16</ValidTo>
  <YearofExperience>1</YearofExperience>
</PersonSkillsViewModel>

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.