POST api/PropertyAttorneyManagement/UpdatePropertyVerificationStatus

Request Information

URI Parameters

None.

Body Parameters

PropertyVerificationAssignment
NameDescriptionTypeAdditional information
PropertyVerificationAssignmentID

integer

None.

TempLocationID

integer

None.

AttorneyUserProfileID

integer

None.

AssignedDate

date

None.

LastDate

date

None.

Status

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

StatusName

string

None.

TotalAllowedTime

decimal number

None.

SpentTime

decimal number

None.

IsSuspended

boolean

None.

SuspendReason

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PropertyVerificationAssignmentID": 1,
  "TempLocationID": 1,
  "AttorneyUserProfileID": 2,
  "AssignedDate": "2026-04-06T21:38:31.7495574-05:00",
  "LastDate": "2026-04-06T21:38:31.7495574-05:00",
  "Status": "sample string 3",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 6,
  "UpdatedBy": 1,
  "StatusName": "sample string 7",
  "TotalAllowedTime": 8.0,
  "SpentTime": 9.0,
  "IsSuspended": true,
  "SuspendReason": "sample string 11"
}

application/xml, text/xml

Sample:
<PropertyVerificationAssignment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model">
  <AssignedDate>2026-04-06T21:38:31.7495574-05:00</AssignedDate>
  <AttorneyUserProfileID>2</AttorneyUserProfileID>
  <CreatedBy>6</CreatedBy>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <IsSuspended>true</IsSuspended>
  <LastDate>2026-04-06T21:38:31.7495574-05:00</LastDate>
  <PropertyVerificationAssignmentID>1</PropertyVerificationAssignmentID>
  <SpentTime>9</SpentTime>
  <Status>sample string 3</Status>
  <StatusName>sample string 7</StatusName>
  <SuspendReason>sample string 11</SuspendReason>
  <TempLocationID>1</TempLocationID>
  <TotalAllowedTime>8</TotalAllowedTime>
  <UpdatedBy>1</UpdatedBy>
</PropertyVerificationAssignment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional 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>