POST Api/Employee/FetchProfileDetailsByEmployeeItself
Request Information
URI Parameters
None.
Body Parameters
UpdateProfile| Name | Description | Type | Additional information |
|---|---|---|---|
| Contact | string |
None. |
|
| Name | string |
None. |
|
| Gender | string |
None. |
|
| DOB | string |
None. |
|
| AboutMe | string |
None. |
|
| Designation | string |
None. |
|
| UserID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Contact": "sample string 1",
"Name": "sample string 2",
"Gender": "sample string 3",
"DOB": "sample string 4",
"AboutMe": "sample string 5",
"Designation": "sample string 6",
"UserID": "97f04d77-9f4e-4478-b7cb-499f4aa4fbda"
}
application/xml, text/xml
Sample:
<UpdateProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DevelAPI.Models"> <AboutMe>sample string 5</AboutMe> <Contact>sample string 1</Contact> <DOB>sample string 4</DOB> <Designation>sample string 6</Designation> <Gender>sample string 3</Gender> <Name>sample string 2</Name> <UserID>97f04d77-9f4e-4478-b7cb-499f4aa4fbda</UserID> </UpdateProfile>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |