POST api/Notification/SaveUserCode
Request Information
URI Parameters
None.
Body Parameters
PanelUserCodesName | Description | Type | Additional information |
---|---|---|---|
Account | string |
None. |
|
PanelUserNo | integer |
None. |
|
Id | integer |
None. |
|
UserCode | string |
None. |
|
IsMaster | boolean |
None. |
|
MasterAddressID | integer |
None. |
|
FirstName | string |
None. |
|
LastName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "account": "sample string 1", "panelUserNo": 2, "id": 3, "userCode": "sample string 4", "isMaster": true, "masterAddressID": 6, "firstName": "sample string 7", "lastName": "sample string 8" }
application/xml, text/xml
Sample:
<PanelUserCodes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeminiiSecureWebAPI.Model"> <Account>sample string 1</Account> <FirstName>sample string 7</FirstName> <Id>3</Id> <IsMaster>true</IsMaster> <LastName>sample string 8</LastName> <MasterAddressID>6</MasterAddressID> <PanelUserNo>2</PanelUserNo> <UserCode>sample string 4</UserCode> </PanelUserCodes>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>