Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content
POST/payout_config

Set payout config

Relay a gasless payout config update for a lease. Part of the Realtor module.

Try it
Request
POSThttps://api.untron.finance/v3/payout_config

What it does

Submits a signed payout config update and returns a userop_hash you can track.

Request

cURL
curl -sS -X POST 'https://api.untron.finance/v3/payout_config' \
  -H 'content-type: application/json' \
  -d '{
    "lease_id": "123",
    "beneficiary": "T…",
    "target_chain_id": "eip155:42161",
    "target_token": "usdc",
    "deadline": "2026-01-29T00:00:00.000Z",
    "signature": "0x…"
  }'

Response (200)

{ "userop_hash": "0x…" }