POST
api/v1/SaveUserDetails
Save user information
Request Information
URI Parameters
None.
Body Parameters
User information modal
UserModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LoggedUserId |
Login user information |
string |
None. |
| UserID |
User ID to update |
integer |
None. |
| UserName |
Name of the user |
string |
None. |
| Role |
Role of the user |
integer |
None. |
|
Email of the user |
string |
None. |
|
| LocationID |
Location details of the user |
integer |
None. |
| Status |
Satus of the information |
string |
None. |
| ForcePassword |
Password force update flag |
boolean |
None. |
| UserIdentifier |
Identity of the user |
string |
None. |
| SpecialityID |
Speciality of the user |
integer |
None. |
| HostFlag |
Host information |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoggedUserId": "string",
"UserID": 0,
"UserName": "string",
"Role": 0,
"Email": "string",
"LocationID": 0,
"Status": "string",
"ForcePassword": true,
"UserIdentifier": "string",
"SpecialityID": 0,
"HostFlag": true
}
application/xml, text/xml
Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mayo_WebAPI.Dtos"> <Email>string</Email> <ForcePassword>true</ForcePassword> <HostFlag>true</HostFlag> <LocationID>0</LocationID> <LoggedUserId>string</LoggedUserId> <Role>0</Role> <SpecialityID>0</SpecialityID> <Status>string</Status> <UserID>0</UserID> <UserIdentifier>string</UserIdentifier> <UserName>string</UserName> </UserModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.