curl --location --request POST 'https://api.travtus.com/leases/create/' \
--header 'Content-Type: application/json' \
--header 'Authorization: bearer <token>' \
--data-raw '{
"lease": {
"identifier": "lease-1",
"start_date": "2023-01-17",
"end_date": "2023-12-17",
"move_in_date": "2023-01-17",
"unit_id": "unit-id-1",
"unit_external_ref": "unit-external-ref-1",
"is_furnished": false,
"minimum_days_notice": 30,
"deposit": 1400.0,
"rent": 700.0
},
"tenants": [
{
"email_address": "[email protected]",
"first_name": "Test",
"last_name": "Tenant 1",
"external_ref": "id-1",
"phone_number": "01234567890"
},
{
"email_address": "[email protected]",
"first_name": "Test",
"last_name": "Tenant 2",
"external_ref": "id-2",
"phone_number": "01234567891"
}
]
}'