Overview
Rise supports the following deposit-related webhook events:deposit.received
When funds are deposited into a company account from an external source, this event is triggered. This includes deposits from exchanges, other wallets, or payment providers.Field reference
The type of object this webhook represents (always “event”)
The Unix timestamp when the event was created
The type of event that occurred
The version of the event schema
A unique identifier for the API request that triggered this event (optional)
A unique key to ensure the webhook is processed only once
Deposit information and details
Implementation Notes
Provider integration: Deposits can come from multiple providers including Routefusion, manual entries, Bitcoin network, or Rise Pay Handler. Check the
provider_name
field to handle provider-specific logic.Status handling: Always check the
status
field before processing deposits. Only complete
deposits should be considered final and processed.Currency conversion: The deposit includes both source and destination amounts in cents. Use
source_amount_cents
for the original amount and destination_amount_cents
for what was actually deposited after fees/conversion.Status Values
pending
pending
Deposit has been initiated but not yet processed or confirmed
complete
complete
Deposit has been successfully processed and funds are available
failed
failed
Deposit processing failed due to technical or validation errors
rejected
rejected
Deposit was rejected due to compliance or business rule violations
reverted
reverted
Deposit was processed but later reversed or cancelled
Provider Types
Rise supports deposits from the following providers:- manual - Manually entered deposits for tracking purposes
- routefusion - Bank wire transfers and ACH deposits via Routefusion
- bitcoin - Bitcoin network deposits
- rise_pay_handler - Internal Rise payment processing system
Network Support
Rise supports deposits on the following blockchain networks:- ethereum - Ethereum mainnet
- arbitrum - Arbitrum Layer 2 network
- base - Base Layer 2 network
- polygon - Polygon (Matic) network
- avalanche - Avalanche C-Chain
- optimism - Optimism Layer 2 network