distribution.completed
A participation distribution completed in Colectiva — Camino logs investor activity + sends confirmation email.
Senders
colectiva
Receivers
camino
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"agreementId": "string",
"workspaceId": "string",
"distributionId": "string",
"investorEmail": "string",
"investorName": "string (optional)",
"period": "string",
"grossAmount": "number",
"isrRetained": "number",
"netAmount": "number",
"participantNet": "number",
"paymentStatus": "string (optional)",
"offeringId": "string (optional)",
"completedAt": "string (ISO datetime)"
}Example payload
The following is a synthetic payload that matches the schema. Production payloads are signed with HMAC-SHA256 and delivered to each receiver's registered webhook endpoint.
json
{
"agreementId": "example-agreementId",
"workspaceId": "example-workspaceId",
"distributionId": "example-distributionId",
"investorEmail": "example-investorEmail",
"investorName": "example-investorName",
"period": "example-period",
"grossAmount": 0,
"isrRetained": 0,
"netAmount": 0,
"participantNet": 0,
"paymentStatus": "example-paymentStatus",
"offeringId": "example-offeringId",
"completedAt": "2026-04-17T12:00:00.000Z"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.