Create subscriptions for one SPV
curl --request POST \
--url https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"subscriptions": [
{
"zestPersonId": "psn_abc123",
"lumpSum": {
"currency": "USD",
"value": "50000.00"
},
"shareClassSlug": "sc_classA",
"partnerSubscriptionId": "acme-sub-9921"
}
]
}
'import requests
url = "https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions"
payload = { "subscriptions": [
{
"zestPersonId": "psn_abc123",
"lumpSum": {
"currency": "USD",
"value": "50000.00"
},
"shareClassSlug": "sc_classA",
"partnerSubscriptionId": "acme-sub-9921"
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
subscriptions: [
{
zestPersonId: 'psn_abc123',
lumpSum: {currency: 'USD', value: '50000.00'},
shareClassSlug: 'sc_classA',
partnerSubscriptionId: 'acme-sub-9921'
}
]
})
};
fetch('https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'subscriptions' => [
[
'zestPersonId' => 'psn_abc123',
'lumpSum' => [
'currency' => 'USD',
'value' => '50000.00'
],
'shareClassSlug' => 'sc_classA',
'partnerSubscriptionId' => 'acme-sub-9921'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions"
payload := strings.NewReader("{\n \"subscriptions\": [\n {\n \"zestPersonId\": \"psn_abc123\",\n \"lumpSum\": {\n \"currency\": \"USD\",\n \"value\": \"50000.00\"\n },\n \"shareClassSlug\": \"sc_classA\",\n \"partnerSubscriptionId\": \"acme-sub-9921\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"subscriptions\": [\n {\n \"zestPersonId\": \"psn_abc123\",\n \"lumpSum\": {\n \"currency\": \"USD\",\n \"value\": \"50000.00\"\n },\n \"shareClassSlug\": \"sc_classA\",\n \"partnerSubscriptionId\": \"acme-sub-9921\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"subscriptions\": [\n {\n \"zestPersonId\": \"psn_abc123\",\n \"lumpSum\": {\n \"currency\": \"USD\",\n \"value\": \"50000.00\"\n },\n \"shareClassSlug\": \"sc_classA\",\n \"partnerSubscriptionId\": \"acme-sub-9921\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"subscriptionSlug": "<string>",
"spvSlug": "<string>",
"personId": "<string>",
"status": "<string>",
"lumpSum": {},
"shareClassSlug": "<string>",
"partnerSubscriptionId": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Subscriptions
Create subscriptions for one SPV
Creates one or more subscription rows for a single SPV. Per investor: lump sum + share class. Idempotency-Key is optional.
POST
/
v1
/
spvs
/
{spv_slug}
/
subscriptions
Create subscriptions for one SPV
curl --request POST \
--url https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"subscriptions": [
{
"zestPersonId": "psn_abc123",
"lumpSum": {
"currency": "USD",
"value": "50000.00"
},
"shareClassSlug": "sc_classA",
"partnerSubscriptionId": "acme-sub-9921"
}
]
}
'import requests
url = "https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions"
payload = { "subscriptions": [
{
"zestPersonId": "psn_abc123",
"lumpSum": {
"currency": "USD",
"value": "50000.00"
},
"shareClassSlug": "sc_classA",
"partnerSubscriptionId": "acme-sub-9921"
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
subscriptions: [
{
zestPersonId: 'psn_abc123',
lumpSum: {currency: 'USD', value: '50000.00'},
shareClassSlug: 'sc_classA',
partnerSubscriptionId: 'acme-sub-9921'
}
]
})
};
fetch('https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'subscriptions' => [
[
'zestPersonId' => 'psn_abc123',
'lumpSum' => [
'currency' => 'USD',
'value' => '50000.00'
],
'shareClassSlug' => 'sc_classA',
'partnerSubscriptionId' => 'acme-sub-9921'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions"
payload := strings.NewReader("{\n \"subscriptions\": [\n {\n \"zestPersonId\": \"psn_abc123\",\n \"lumpSum\": {\n \"currency\": \"USD\",\n \"value\": \"50000.00\"\n },\n \"shareClassSlug\": \"sc_classA\",\n \"partnerSubscriptionId\": \"acme-sub-9921\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"subscriptions\": [\n {\n \"zestPersonId\": \"psn_abc123\",\n \"lumpSum\": {\n \"currency\": \"USD\",\n \"value\": \"50000.00\"\n },\n \"shareClassSlug\": \"sc_classA\",\n \"partnerSubscriptionId\": \"acme-sub-9921\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.zestequity.com/v1/spvs/{spv_slug}/subscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"subscriptions\": [\n {\n \"zestPersonId\": \"psn_abc123\",\n \"lumpSum\": {\n \"currency\": \"USD\",\n \"value\": \"50000.00\"\n },\n \"shareClassSlug\": \"sc_classA\",\n \"partnerSubscriptionId\": \"acme-sub-9921\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"subscriptionSlug": "<string>",
"spvSlug": "<string>",
"personId": "<string>",
"status": "<string>",
"lumpSum": {},
"shareClassSlug": "<string>",
"partnerSubscriptionId": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"code": "<string>",
"detail": "ex: Something went wrong",
"errorId": "<string>",
"validationErrors": [
{
"attribute": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Path Parameters
Body
application/json
Show child attributes
Show child attributes
Response
Successful Response
Show child attributes
Show child attributes
⌘I