POST api/Properties/PropertyRegistration_SaveAttorney
Request Information
URI Parameters
None.
Body Parameters
PropertyRegistration_Attorney| Name | Description | Type | Additional information |
|---|---|---|---|
| TempPropertyDetailID | integer |
None. |
|
| TempLocationID | integer |
None. |
|
| AttorneySelection | string |
None. |
|
| AttorneyUserProfileID | integer |
None. |
|
| AttorneyTempUserProfileID | integer |
None. |
|
| PropertyActionType | string |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TempPropertyDetailID": 1,
"TempLocationID": 2,
"AttorneySelection": "sample string 3",
"AttorneyUserProfileID": 1,
"AttorneyTempUserProfileID": 1,
"PropertyActionType": "sample string 4",
"CreatedBy": 5,
"UpdatedBy": 6
}
application/xml, text/xml
Sample:
<PropertyRegistration_Attorney xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.Registration"> <AttorneySelection>sample string 3</AttorneySelection> <AttorneyTempUserProfileID>1</AttorneyTempUserProfileID> <AttorneyUserProfileID>1</AttorneyUserProfileID> <CreatedBy>5</CreatedBy> <PropertyActionType>sample string 4</PropertyActionType> <TempLocationID>2</TempLocationID> <TempPropertyDetailID>1</TempPropertyDetailID> <UpdatedBy>6</UpdatedBy> </PropertyRegistration_Attorney>
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>