Trade Strategy Traders

trade_strategy.trader.created

Fires once per trader — the trader is the per-participant record bound to a strategy, created during a successful enrolment operation. Each trader has its own ledger account labelled with the strategy ID.

ParameterDescriptionType
idUnique identifier for this trader.string (UUID)
strategy_idIdentifier of the strategy this trader is enrolled in.string (UUID)
participant_codeThe zerohash participant code for the natural person backing this trader.string
account_labelAccount label used for the trader's strategy account. Equals the strategy ID.string
auto_rebalanceWhether the trader is configured for automatic rebalancing.boolean
created_atTrader creation timestamp (UTC, RFC3339).string
updated_atTimestamp of the transition that triggered this webhook (UTC, RFC3339).string

Payload Exmaple

{
    "id": "bd92c25a-eaf8-3e95-ab7a-59f3e2275234",
    "strategy_id": "9ba5e569-a966-42a9-a7ad-666b0a5300f3",
    "participant_code": "ABC123",
    "account_label": "9ba5e569-a966-42a9-a7ad-666b0a5300f3",
    "auto_rebalance": true,
    "created_at": "2026-05-29T18:56:43Z",
    "updated_at": "2026-05-29T18:56:43Z"
}