POST api/Properties/AddNewSaleManagerFor_ManagerPanel
Request Information
URI Parameters
None.
Body Parameters
SaleServiceProvider_ManagerPanel| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationID | integer |
None. |
|
| SaleServiceProviderUserProfileID | integer |
None. |
|
| SaleServiceProviderProfessionID | integer |
None. |
|
| SaleServiceFeeOptionID | integer |
None. |
|
| SaleServiceProvider_Charges | decimal number |
None. |
|
| PropertyListingOptionID | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocationID": 1,
"SaleServiceProviderUserProfileID": 1,
"SaleServiceProviderProfessionID": 1,
"SaleServiceFeeOptionID": 1,
"SaleServiceProvider_Charges": 1.0,
"PropertyListingOptionID": 2,
"CreatedBy": 3,
"UpdatedBy": 4
}
application/xml, text/xml
Sample:
<SaleServiceProvider_ManagerPanel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.SaleModule"> <CreatedBy>3</CreatedBy> <LocationID>1</LocationID> <PropertyListingOptionID>2</PropertyListingOptionID> <SaleServiceFeeOptionID>1</SaleServiceFeeOptionID> <SaleServiceProviderProfessionID>1</SaleServiceProviderProfessionID> <SaleServiceProviderUserProfileID>1</SaleServiceProviderUserProfileID> <SaleServiceProvider_Charges>1</SaleServiceProvider_Charges> <UpdatedBy>4</UpdatedBy> </SaleServiceProvider_ManagerPanel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ResultStatus |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics"> <Data /> <Message>sample string 1</Message> <Status>Success</Status> </Result>