The Investments endpoint is used to keep track of the investors who commit to and/or invest in SPVs. To associate an investor with an SPV and successfully make an investment, you will need an SPV ID and a valid profile ID with the role investor
. The investment endpoints are as follows:
-
GET – /api/investments (investment index)
-
POST – /api/investments (join investment using the
invite_code
) -
GET – /api/investments/{id} (fetch specific investment)
-
PUT – /api/investmens/{id} (investments update)
-
GET – /api/investments/{id}/sign (sign subscriptions document for an investment)
In the response, upon creation of an SPV, you will receive a string field, invite_code
. The invite_code
code is a unique URL tied to a function that allows an investor profile to join the SPV with which the the code is associated. Once you have the invite_code,
you can have users initiate a POST API call using the link to the following endpoint to create the investment
https://client.syndicately.come/api/v1/api/investments
When creating a new investment, you will need to specify the /investments.write
scope. The request body schema is as follows:
-
invite_code (string) *required
-
Unique URL generated and returned in the response of a successful SPV POST API call
-
Unique URL must be used in this field for the API call
-
-
user_profile_id (string) *required
-
Profile ID for the investor
-
Profile role must be
investor
-
-
invest_amount (integer) *required
-
Amount, expressed as $USD that the investor would like to commit to invest in the SPV
-
If amount is outside the
investor_minimum_value
,investor_maximum_value
, or exceeds thespv_target_value
andinvest_no_limit_flag
is no, you will receive an error in the response
-
Sample Request Payload #
Sample Response Payload (200) #
The response body schemas are as follows:
-
id
-
ID that identifies this investment
-
-
confirmed_amount
-
Confirmation of the amount from the manager
-
By default, the
confirmed_amount
returns the same value asinvest_amount
unless changed for any reason by the manager
-
-
ownership_percentage
-
Represented as a % (percent of overall ownership in the SPV that the investment and associated profile ID has)
-
Percentage is dynamic and will automatically change as new investments come in but will only be calculated for each investor once their
status
is 5 (complete).
-
-
status
-
values:
not started
,committed
,docs_needed
,docs_signed
,wire_needed
,completed
,passed
-
not_started
: investor has clicked theinvite_code
but has not put in ainvest_amount
yet -
committed
: investor has committed to aninvest_amount
, but the SPV does not have atax_id
value so it cannot accept subscription documents yet -
docs_needed
: investor has committed to aninvest_amount
and the SPV has atax_id
and signed operating agreement -
docs_signed
: subscription documents was signed, which enables the ability to make a transfer -
wire_needed
: SPV status set toclose_pening
, but the investment has not submitted their investment -
completed
: both subscription documents and investment transfer have been made -
passed
: investor decided to ultimately not invest after accepting theinvite_code
-
-