Callback endpoint for Brokermint to push contact updates into Lofty. Not intended for general external callers.
The target contact must have been previously linked to a Brokermint record through the Lofty UI’s Brokermint Integration. Without this link the response body contains a non-zero code despite HTTP 200.
curl --request PUT \
--url https://api.lofty.com/v1.0/brokermint/lead \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"contactType": "<string>",
"externalId": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"phone": "<string>",
"bmPrivate": true,
"leadSource": "<string>"
}
'{
"code": 0,
"message": "success"
}Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
curl --request PUT \
--url https://api.lofty.com/v1.0/brokermint/lead \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"contactType": "<string>",
"externalId": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"phone": "<string>",
"bmPrivate": true,
"leadSource": "<string>"
}
'{
"code": 0,
"message": "success"
}