Skip to main content
POST
/
v1
/
investors
Bulk create investors
curl --request POST \
  --url https://api.example.com/v1/investors \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "investors": [
    {
      "partnerInvestorId": "acme-inv-7341",
      "email": "alice@example.com",
      "firstName": "Alice",
      "lastName": "Liddell",
      "dateOfBirth": "1985-04-12",
      "countryOfResidence": "AE"
    }
  ]
}
'
{
  "results": [
    {
      "partnerInvestorId": "<string>",
      "status": "<string>",
      "zestPersonId": "<string>",
      "error": {
        "code": "<string>",
        "message": "<string>",
        "retryable": true,
        "field": "<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

Body

application/json
investors
InvestorCreateRow · object[]
required

Response

Successful Response

results
InvestorRowResult · object[]
required