POST api/urDefaultSetting/save
Request Information
URI Parameters
None.
Body Parameters
UserDefaultSettingDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ProductTypeId | integer |
None. |
|
| ProductId | integer |
None. |
|
| SubProductId | integer |
None. |
|
| BankAccountId | integer |
None. |
|
| Status | boolean |
None. |
|
| UserId | integer |
None. |
|
| BranchId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ProductTypeId": 1,
"ProductId": 1,
"SubProductId": 1,
"BankAccountId": 1,
"Status": true,
"UserId": 1,
"BranchId": 1
}
application/xml, text/xml
Sample:
<UserDefaultSettingDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.Master"> <BankAccountId>1</BankAccountId> <BranchId>1</BranchId> <Id>1</Id> <ProductId>1</ProductId> <ProductTypeId>1</ProductTypeId> <Status>true</Status> <SubProductId>1</SubProductId> <UserId>1</UserId> </UserDefaultSettingDTO>
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>