POST api/EmployeeUpdate/UpdateInternalLearning

Request Information

URI Parameters

None.

Body Parameters

EmployeeInternalLearning
NameDescriptionTypeAdditional information
EmployeeId

string

None.

InternalLearnings

Collection of InternalLearning

None.

Request Formats

application/json, text/json

Sample:
{
  "employeeId": "sample string 1",
  "internalLearnings": [
    {
      "id": 1,
      "courseImageUrl": "sample string 2",
      "course": "sample string 3",
      "endDate": "sample string 4"
    },
    {
      "id": 1,
      "courseImageUrl": "sample string 2",
      "course": "sample string 3",
      "endDate": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<EmployeeInternalLearning xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
  <EmployeeId>sample string 1</EmployeeId>
  <InternalLearnings>
    <InternalLearning>
      <Course>sample string 3</Course>
      <CourseImageUrl>sample string 2</CourseImageUrl>
      <EndDate>sample string 4</EndDate>
      <Id>1</Id>
    </InternalLearning>
    <InternalLearning>
      <Course>sample string 3</Course>
      <CourseImageUrl>sample string 2</CourseImageUrl>
      <EndDate>sample string 4</EndDate>
      <Id>1</Id>
    </InternalLearning>
  </InternalLearnings>
</EmployeeInternalLearning>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>