POST api/CreateCompanyFormSetup
Request Information
URI Parameters
None.
Body Parameters
SaveCompanyFormSetupVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| MasterFormSetupId | integer |
None. |
|
| LabelName | string |
None. |
|
| IsVisible | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| CompanyId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"MasterFormSetupId": 2,
"LabelName": "sample string 3",
"IsVisible": true,
"CreatedDate": "2025-12-07T14:39:43.4848019Z",
"CompanyId": 1
}
application/xml, text/xml
Sample:
<SaveCompanyFormSetupVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models.SuperAdminModels"> <CompanyId>1</CompanyId> <CreatedDate>2025-12-07T20:09:43.4848019+05:30</CreatedDate> <Id>1</Id> <IsVisible>true</IsVisible> <LabelName>sample string 3</LabelName> <MasterFormSetupId>2</MasterFormSetupId> </SaveCompanyFormSetupVm>
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>