Updates part or all of the property details associated with a specified transaction file. You can update any combination of property, listing, and purchase fields.
PATCH
/v2/transactions/{id}/details
curl \
--request PATCH 'https://api.pre.transactiondesk.com/v2/transactions/{id}/details' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"property":{"streetName":"Wellington Rd.","streetNumber":"200","state":"ON","city":"London","county":"Middlesex","zipCode":"N6E 38B","subDivision":"White Oaks","lotNumber":"8","block":"20","pageNumber":"5","platBook":"33","yearBuilt":1980,"schoolDistrict":"Aquinis School District","zoningClass":"Residential","taxNumber":"112-1231-999","township":"Essex","legalDescription":"PL ; Lot ; Bl ; DL ; LD ; S ; Twn ; Rge ; M ; Lot A, Section 75, Victoria District, Plan 42316"},"listing":{"mlsNumber":"421126","listPrice":200000,"expirationDate":"2012-04-23T18:25:43.51","propertyIncludes":"Dishwasher, Stove, Fridge","propertyExcludes":"Washer, Dryer","leasedItems":"Hot Water Tank"},"purchase":{"purchasePrice":190000,"offerDate":"2026-05-04T09:42:00Z","offerExpirationDate":"2026-05-04T09:42:00Z","offerAcceptanceDate":"2026-05-04T09:42:00Z","applicationDate":"2026-05-04T09:42:00Z","approvalDate":"2026-05-04T09:42:00Z","depositAmount":50000,"additionalDepositAmount":10000,"additionalDepositDate":"2026-05-04T09:42:00Z","fundingDate":"2026-05-04T09:42:00Z","possessionDate":"2026-05-04T09:42:00Z","closingDate":"2026-05-04T09:42:00Z"}}'
Request examples
{
"property": {
"streetName": "Wellington Rd.",
"streetNumber": "200",
"state": "ON",
"city": "London",
"county": "Middlesex",
"zipCode": "N6E 38B",
"subDivision": "White Oaks",
"lotNumber": "8",
"block": "20",
"pageNumber": "5",
"platBook": "33",
"yearBuilt": 1980,
"schoolDistrict": "Aquinis School District",
"zoningClass": "Residential",
"taxNumber": "112-1231-999",
"township": "Essex",
"legalDescription": "PL ; Lot ; Bl ; DL ; LD ; S ; Twn ; Rge ; M ; Lot A, Section 75, Victoria District, Plan 42316"
},
"listing": {
"mlsNumber": "421126",
"listPrice": 200000,
"expirationDate": "2012-04-23T18:25:43.51",
"propertyIncludes": "Dishwasher, Stove, Fridge",
"propertyExcludes": "Washer, Dryer",
"leasedItems": "Hot Water Tank"
},
"purchase": {
"purchasePrice": 190000,
"offerDate": "2026-05-04T09:42:00Z",
"offerExpirationDate": "2026-05-04T09:42:00Z",
"offerAcceptanceDate": "2026-05-04T09:42:00Z",
"applicationDate": "2026-05-04T09:42:00Z",
"approvalDate": "2026-05-04T09:42:00Z",
"depositAmount": 50000,
"additionalDepositAmount": 10000,
"additionalDepositDate": "2026-05-04T09:42:00Z",
"fundingDate": "2026-05-04T09:42:00Z",
"possessionDate": "2026-05-04T09:42:00Z",
"closingDate": "2026-05-04T09:42:00Z"
}
}
Response examples (400)
{
"code": 400,
"message": "Request was not valid.",
"details": [
"string"
]
}
Response examples (401)
{
"code": 401,
"message": "Unauthorized. The user is not authenticated.",
"details": []
}
Response examples (404)
{
"code": 404,
"message": "Item not found.",
"details": []
}