v1
latestOpenAPI 3.0.12026-07-22120163333.7 KBLead Transaction
Brokermint — Sync Transaction
Callback endpoint for Brokermint integration to sync transaction updates into Lofty.
The transaction must be linked to Brokermint via the Lofty UI before this endpoint can update it. See the request body schema for supported fields.
put/v1.0/brokermint/transaction
Headers
Authorizationstring required
Bearer [access_token]
Content-Typestring required
application/json
Request body
Example request
{
"id": 10001,
"agentId": 100001,
"agentName": "Jane Doe",
"address": "123 Main St",
"city": "Los Angeles",
"state": "CA",
"zip": "90012",
"status": "Closed",
"transactionType": "Purchase",
"price": 1000000,
"representing": "Buyer"
}Response
Envelope {code, message}. code=0 indicates applied; code=200060 indicates the transaction was not found (either the Brokermint link is missing or the transaction was deleted). HTTP status is 200 in both cases.
Example response
{
"message": "success"
}