Skip to main content
PUT
/
v1.0
/
brokermint
/
lead
Brokermint — Sync Lead
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.

Headers

Authorization
string
required

Bearer [access_token]

Content-Type
string
required

application/json

Body

application/json

Brokermint-sourced contact payload.

email
string
firstName
string
lastName
string
contactType
string
externalId
string
address
string
city
string
state
string
zip
string
phone
string
bmPrivate
boolean
leadSource
string

Response

Brokermint contact synced.

Common response envelope with status code and message.

code
integer<int32>

Status code. 0 indicates success.

Example:

0

message
string

Status message.

Example:

"success"