trade_strategy.trader.created
trade_strategy.trader.createdFires 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.
| Parameter | Description | Type |
|---|---|---|
id | Unique identifier for this trader. | string (UUID) |
strategy_id | Identifier of the strategy this trader is enrolled in. | string (UUID) |
participant_code | The zerohash participant code for the natural person backing this trader. | string |
account_label | Account label used for the trader's strategy account. Equals the strategy ID. | string |
auto_rebalance | Whether the trader is configured for automatic rebalancing. | boolean |
created_at | Trader creation timestamp (UTC, RFC3339). | string |
updated_at | Timestamp 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"
}