Updates the company record associated with the caller’s team. Caller must have permission to manage team organization.
curl --request POST \
--url https://api.lofty.com/v1.0/org/company \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"name": "Lofty Realty Group",
"phone": "4155551234",
"phoneCode": "1",
"phoneCountry": "US",
"email": "ops@lofty.com",
"city": "San Francisco",
"state": "CA",
"zipcode": "94103",
"streetAddress": "123 Market St, Suite 200",
"header": "https://cdn.chime.me/image/fs/team/header.png"
}
'{
"code": 0,
"message": "success",
"data": {}
}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.
Company payload.
Company name.
"Lofty Realty Group"
Primary phone number, digits only.
"4155551234"
Phone country calling code without the leading +.
"1"
ISO 3166-1 alpha-2 country code for the phone.
"US"
Primary contact email.
"ops@lofty.com"
City.
"San Francisco"
State or province.
"CA"
Postal / ZIP code.
"94103"
Street address line.
"123 Market St, Suite 200"
Header / display banner image URL.
"https://cdn.chime.me/image/fs/team/header.png"
Envelope with business code and message.
Response envelope for POST /v1.0/org/company, PUT /v1.0/org/office and POST /v1.0/org/office. Carries a business code and message; data may be absent on pure acknowledgement responses.
curl --request POST \
--url https://api.lofty.com/v1.0/org/company \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"name": "Lofty Realty Group",
"phone": "4155551234",
"phoneCode": "1",
"phoneCountry": "US",
"email": "ops@lofty.com",
"city": "San Francisco",
"state": "CA",
"zipcode": "94103",
"streetAddress": "123 Market St, Suite 200",
"header": "https://cdn.chime.me/image/fs/team/header.png"
}
'{
"code": 0,
"message": "success",
"data": {}
}