PUT api/UsersAPI/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
APPUser| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserName | string |
None. |
|
| Password | string |
None. |
|
| Branch_Id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserName": "sample string 2",
"Password": "sample string 3",
"Branch_Id": 4
}
application/xml, text/xml
Sample:
<APPUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POSAPI.Models"> <Branch_Id>4</Branch_Id> <Id>1</Id> <Password>sample string 3</Password> <UserName>sample string 2</UserName> </APPUser>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.