v1
latestOpenAPI 3.0.12026-07-22120163333.7 KBLead Transaction
Update Property Address
Updates the property address of a transaction. The transactionId is carried in the request body, not the URL.
Full replacement — omitted fields are set to null. To update a single field, GET the current address first, modify, then resubmit the whole object.
post/v1.0/leads/{leadId}/transaction/property/address
Path parameters
leadIdinteger required
Lead ID. Must be manageable by the caller.
Headers
Authorizationstring required
Bearer [access_token]
Content-Typestring required
application/json
Request body
Example request
{
"transactionId": 10001,
"unit": "1",
"label": "Investment",
"state": "CA",
"city": "Los Angeles",
"zipCode": "90012",
"streetAddress": "100 W 1st St",
"county": "Los Angeles"
}Response
Envelope {code, message}. code=0 indicates success.
Example response
{
"message": "success"
}