Offers: list

Return information about all Offers in a company. You can filter by Offer Id, Branch Id, Property Id and Offer modified Date.

Request - GET https://api-uat.vtopenview.com/offers

You will need to include your access token upon making a request. For more information, see the authentication and authorization page.

Example request with authorization:

curl -- GET Base URI: https://api-uat.vtopenview.com/offers?branchid={branchid}&offerId={offerId}&propertyId={propertyId}&modifiedDate={MM/DD/YYYY}
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"

Query Parameters
offerId
long
The Offer's ID

branchid
int
The Branch's ID

propertyId
long
The Property's ID

modifiedDate
string
The Offer modified date. Format: MM/DD/YYYY
Response

If successful, this method returns a response body with the following structure:

Example response:

HTTPS 200 OK
Content-Type: Offer/json
{
"Offers": [
{
"Offerid": long,
"ModifededDate": "date",
"Offer_Accept_Date": "date",
"Offer_Date": "date",
"Offer_Amount": decimal,
"Offer_Status": "string",
"Fee": decimal,
"Commission": decimal,
"Exchange_Date": "date",
"Completion_Target_Date": "date",
"Exchange_Target_Date": "date",
"Offer_Condition": "string",
"Offer_Note": "string",
"property": {
"address": "string",
"id": long,
"Status": "string",
"isSale": boolean
},
"branch": {
"branchname": "string",
"branchid": long
},
"Purchaser": {
"id": long,
"email": "string",
"forename": "string",
"surname": "string",
"Initials": "string",
"title": "string",
"phone": "string",
"workphone": "string",
"mobilephone": "string",
},
"Purchaser2": {
"id": long,
"email": "string",
"forename": "string",
"surname": "string",
"Initials": "string",
"title": "string",
"phone": "string",
"workphone": "string",
"mobilephone": "string",
}
}
]
}