Create investment request
Submits a new investment request for a unit.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/jsonRequired
{
"unit_id": 5,
"amount": 25000
}
Responses
application/json
Investment request created
{
"success": true,
"request": {
"id": 1,
"unit_id": 5,
"investor_id": 1,
"percentage": 2.5,
"estimated_amount": 125000,
"management_fee": 2500,
"management_fee_percentage": 2,
"net_amount": 122500,
"status": "pending",
"created_at": "2024-01-20T10:30:00+00:00"
}
}
Modified at 2026-03-12 00:48:26