payment.completed
A payment transaction was fully completed in Colectiva — source apps confirm the payment for delivery orders, subscriptions, or escrow. Used by baul to confirm delivery payment, mancha for reservation payment, constanza for accounting, and cosmos-pet for vet clinic subscription payments.
Senders
colectiva
Receivers
baulconstanzacosmos-petmancha
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"paymentId": "string",
"chargeId": "string (optional)",
"amount": "number (cents)",
"currency": "string",
"referenceId": "string (optional)",
"referenceType": "string (optional)"
}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
{
"paymentId": "example-paymentId",
"chargeId": "example-chargeId",
"amount": 10000,
"currency": "example-currency",
"referenceId": "example-referenceId",
"referenceType": "example-referenceType"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.