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 partner calls DELETE /v1/spv-requests/{slug} on a request that was still in pending-review and the cancellation succeeds. Terminal state.

Envelope fields

eventId
string
required
Unique per delivery.
eventType
string
required
Always "spv_request.cancelled".
occurredAt
string (ISO 8601 UTC)
required
Timestamp of the cancellation.
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 "cancelled" for this event.
cancelledAt
string (ISO 8601 UTC)
required
Timestamp the partner cancelled the request.

Example

{
  "eventId": "wde_77c5e1f4ab2d8e30",
  "eventType": "spv_request.cancelled",
  "occurredAt": "2026-05-07T13:45:11.000Z",
  "data": {
    "spvRequestSlug": "svr_a1b2c3",
    "templateId": "syndicate_secondary",
    "templateVersion": "1.0.0",
    "tenantSlug": "acme",
    "attributes": { "underlyingCompanySlug": "co_acme" },
    "status": "cancelled",
    "cancelledAt": "2026-05-07T13:45:11.000Z"
  }
}