v1
latestOpenAPI 3.0.02026-07-2656110201.6 KBDeposits
Update a Deposit
Updates an existing deposit by its ID. All fields in the request body are optional — only the provided fields will be updated. This can be used to change the deposit name, description, payment method options, disabled state, blockchain symbols, and more.
patch/v1/deposits/{depositId}/api-key
Path parameters
depositIdstring required
The unique ID of the deposit to update.
Query parameters
apiKeystring required
Your API key, which can be generated from the Helio Dashboard settings page.
Request body
Example request
{
"disabledBlockchainSymbols": [
[
"SOL",
"BASE"
]
]
}Response
Deposit updated successfully.
Example response
{
"disabledBlockchainSymbols": [
[
"SOL",
"BASE"
]
]
}