Skip to main content

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.

When fired

Emitted after a Zest admin rejects the SPV request. The request is in a terminal state and cannot be revived; submit a new request to retry.

Envelope fields

eventId
string
required
Unique per delivery.
eventType
string
required
Always "spv_request.rejected".
occurredAt
string (ISO 8601 UTC)
required
Timestamp of the rejection.
data
object
required
See payload schema below.

data schema

spvRequestSlug
string
required
Stable Zest-side identifier of the SPV request.
templateId
string
required
Contract template id used.
templateVersion
string
required
Contract template version.
tenantSlug
string
required
Tenant slug.
attributes
object
required
The originally-submitted attributes map.
status
string
required
Always "rejected" for this event.
rejectionReason
string
required
Human-readable rejection reason supplied by the admin. Surface this to your operator UI.
rejectedAt
string (ISO 8601 UTC)
required
Timestamp the admin rejected the request.

Example

{
  "eventId": "wde_551b9a3df0c41a60",
  "eventType": "spv_request.rejected",
  "occurredAt": "2026-05-08T11:14:22.000Z",
  "data": {
    "spvRequestSlug": "svr_a1b2c3",
    "templateId": "syndicate_secondary",
    "templateVersion": "1.0.0",
    "tenantSlug": "acme",
    "attributes": { "underlyingCompanySlug": "co_acme" },
    "status": "rejected",
    "rejectionReason": "Underlying company not eligible for syndicate vehicles in this jurisdiction.",
    "rejectedAt": "2026-05-08T11:14:22.000Z"
  }
}