Skip to main content
POST
/
v1
/
spvs
/
{spv_slug}
/
subscriptions
Create subscriptions for one SPV
curl --request POST \
  --url https://api.example.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"
    }
  ]
}
'
{
  "results": [
    {
      "subscriptionSlug": "<string>",
      "spvSlug": "<string>",
      "personId": "<string>",
      "status": "<string>",
      "lumpSum": {},
      "shareClassSlug": "<string>",
      "partnerSubscriptionId": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.zestequity.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Idempotency-Key
string

Path Parameters

spv_slug
string
required

Body

application/json
subscriptions
SubscriptionCreateRow · object[]
required

Response

Successful Response

results
SubscriptionResult · object[]
required