POST api/Properties/RentalPropertyCreditCheckFormSubmission

Request Information

URI Parameters

None.

Body Parameters

RentalCreditFormsSubmissionModel
NameDescriptionTypeAdditional information
DBNo

integer

None.

AppNo

integer

None.

RentalCreditFormsSubmissionID

integer

None.

CountryRentalCreditFormID

integer

None.

RentPropertyBidID

integer

None.

SubmittedFormURL

string

None.

TimeStamp

date

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

string

None.

UpdatedBy

string

None.

UserID

integer

None.

UserProfileID

integer

None.

IsBidStatusChange

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "DBNo": 1,
  "AppNo": 1,
  "RentalCreditFormsSubmissionID": 1,
  "CountryRentalCreditFormID": 1,
  "RentPropertyBidID": 2,
  "SubmittedFormURL": "sample string 3",
  "TimeStamp": "2026-09-20T18:19:29.4905334-05:00",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": "sample string 6",
  "UpdatedBy": "sample string 7",
  "UserID": 1,
  "UserProfileID": 1,
  "IsBidStatusChange": true
}

application/xml, text/xml

Sample:
<RentalCreditFormsSubmissionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <AppNo>1</AppNo>
  <CountryRentalCreditFormID>1</CountryRentalCreditFormID>
  <CreatedBy>sample string 6</CreatedBy>
  <DBNo>1</DBNo>
  <IsActive>true</IsActive>
  <IsBidStatusChange>true</IsBidStatusChange>
  <IsDeleted>true</IsDeleted>
  <RentPropertyBidID>2</RentPropertyBidID>
  <RentalCreditFormsSubmissionID>1</RentalCreditFormsSubmissionID>
  <SubmittedFormURL>sample string 3</SubmittedFormURL>
  <TimeStamp>2026-09-20T18:19:29.4905334-05:00</TimeStamp>
  <UpdatedBy>sample string 7</UpdatedBy>
  <UserID>1</UserID>
  <UserProfileID>1</UserProfileID>
</RentalCreditFormsSubmissionModel>

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>