POST api/CompanyConfiguration/UpdateDetail
Request Information
URI Parameters
None.
Body Parameters
CompanyConfigurationUpdateDetailVm| Name | Description | Type | Additional information |
|---|---|---|---|
| UpdateProjectWpTemplate | boolean |
None. |
|
| ProjectWpTemplateId | integer |
None. |
|
| UpdateInventoryWpTemplate | boolean |
None. |
|
| InventoryWpTemplateId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UpdateProjectWpTemplate": true,
"ProjectWpTemplateId": 1,
"UpdateInventoryWpTemplate": true,
"InventoryWpTemplateId": 1
}
application/xml, text/xml
Sample:
<CompanyConfigurationUpdateDetailVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.SuperAdmin"> <InventoryWpTemplateId>1</InventoryWpTemplateId> <ProjectWpTemplateId>1</ProjectWpTemplateId> <UpdateInventoryWpTemplate>true</UpdateInventoryWpTemplate> <UpdateProjectWpTemplate>true</UpdateProjectWpTemplate> </CompanyConfigurationUpdateDetailVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Description | string |
None. |
|
| Data | Object |
None. |
|
| Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Description": "sample string 3",
"Data": {},
"Count": 5
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models"> <Count>5</Count> <Data /> <Description>sample string 3</Description> <Message>sample string 2</Message> <Success>true</Success> </Response>