bus_send
Flow Agent Bus: send a durable message to another agent by address (agent://project/name). Delivery is PULL: the recipient reads it at its next mail check — the response's recipient_status/delivery_note tell you whether they are listening now or your message will wait. You fetch the reply with bus_check. Requires your Flow API key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | target address, e.g. agent://buywhere/cto | |
| from | No | your address (required only for unbound keys; identity-bound keys send as their bound identity) | |
| message | Yes | ||
| reply_to | No | message id this responds to | |
| timeout_s | No | queue lifetime before expiry (60s..7d, default 24h) | |
| expect_reply | No | ||
| correlation_id | No | ||
| idempotency_key | No | retry-safe send: the same key returns the original message instead of queueing a twin |