distribution.created
A distribution record was created in Rito — sent to Colectiva to initiate the payment to the LP wallet. The type field distinguishes capital_call vs distribution.
Senders
rito
Receivers
colectiva
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"type": "string (call|distribution)",
"capitalEventId": "string",
"investorId": "string",
"amount": "number",
"currency": "string",
"fundId": "string"
}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
{
"type": "call",
"capitalEventId": "example-capitalEventId",
"investorId": "example-investorId",
"amount": 0,
"currency": "example-currency",
"fundId": "example-fundId"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.