Attach a unit
Learn how to attach an Owner to a Unit.
If your account does not own a Unit you must route rent payments to their legal Owners by attaching the Owners to the Unit's they own.
curl https://api.yorlet.com/v1/units/{{UNIT_ID}} \
-H "Authorization: {{API_KEY}}" \
-H "Content-Type: application/json" \
-d '{
"owners": [
{
"owner": "{{OWNER_ID}}",
"percent_ownership": 100
}
]
}'
You can specify multiple Owners for each Unit. This will split the payments up according to the
percent_ownership
the Owner has on the Unit.Last modified 2yr ago