Skip to main content
POST
/
admin
/
deposits
/
retry
/
bulk
Operator bulk retry for failed deposits matching a filter
curl --request POST \
  --url https://v1.orchestrator.rhinestone.dev/deposit-processor/admin/deposits/retry/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "projectId": "proj_abc123",
  "clientId": "0x1234...",
  "chain": "eip155:8453",
  "errorCode": "BRIDGE_TIMEOUT",
  "failedAfter": "2023-11-07T05:31:56Z",
  "failedBefore": "2023-11-07T05:31:56Z"
}
'
{
  "message": "<string>",
  "count": 123,
  "deposits": [
    {
      "id": "<string>",
      "txHash": "<string>",
      "chain": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt

Use this file to discover all available pages before exploring further.

Headers

x-api-key
string
required

API key for authentication

Example:

"your-api-key"

x-api-version
string

API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

Pattern: ^\d{4}-\d{2}\.[a-z0-9]+$
Example:

"2026-04.amazon"

Body

application/json
projectId
string

Target user-service project id whose failed deposits should be retried. Provide this for any deposits written after the RHI-3857 rekey. At least one of projectId / clientId is required; supplying both OR-matches (covers a project's pre- and post-rekey rows in one call).

Minimum string length: 1
Example:

"proj_abc123"

clientId
string

Legacy keccak256(apiKey) client id. Use to target rows written before the RHI-3857 rekey; will be removed under RHI-3859.

Minimum string length: 1
Example:

"0x1234..."

chain
string

Limit to a single CAIP-2 chain

Pattern: ^[a-z0-9]+:[a-zA-Z0-9]+$
Example:

"eip155:8453"

errorCode
string

Limit to deposits that failed with this error code

Minimum string length: 1
Example:

"BRIDGE_TIMEOUT"

failedAfter
string<date-time>

ISO timestamp; include only deposits updated at/after this

failedBefore
string<date-time>

ISO timestamp; include only deposits updated at/before this

Response

Bulk retry initiated

message
string
required
count
number
required
deposits
object[]
required