POST api/Master/UpdateMyprofile

Request Information

URI Parameters

None.

Body Parameters

EmployeeMaster_model
NameDescriptionTypeAdditional information
EmployeeId

decimal number

None.

FirstName

string

None.

LastName

string

None.

EmployeeCode

string

None.

Email

string

None.

Mobile

string

None.

Password

string

None.

DesignationId

decimal number

None.

Department

string

None.

ReminderHead

string

None.

AllowChatting

boolean

None.

AllowPasswordModule

boolean

None.

PasswordManager

boolean

None.

IsAdmin

boolean

None.

IsDisplay

boolean

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "EmployeeId": 1.0,
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "EmployeeCode": "sample string 4",
  "Email": "sample string 5",
  "Mobile": "sample string 6",
  "Password": "sample string 7",
  "DesignationId": 1.0,
  "Department": "sample string 8",
  "ReminderHead": "sample string 9",
  "AllowChatting": true,
  "AllowPasswordModule": true,
  "PasswordManager": true,
  "IsAdmin": true,
  "IsDisplay": true,
  "IsActive": true
}

application/xml, text/xml

Sample:
<EmployeeMaster_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.Model">
  <AllowChatting>true</AllowChatting>
  <AllowPasswordModule>true</AllowPasswordModule>
  <Department>sample string 8</Department>
  <DesignationId>1</DesignationId>
  <Email>sample string 5</Email>
  <EmployeeCode>sample string 4</EmployeeCode>
  <EmployeeId>1</EmployeeId>
  <FirstName>sample string 2</FirstName>
  <IsActive>true</IsActive>
  <IsAdmin>true</IsAdmin>
  <IsDisplay>true</IsDisplay>
  <LastName>sample string 3</LastName>
  <Mobile>sample string 6</Mobile>
  <Password>sample string 7</Password>
  <PasswordManager>true</PasswordManager>
  <ReminderHead>sample string 9</ReminderHead>
</EmployeeMaster_model>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EmployeeMaster_model'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.