Submit payout
Partner Auth: EIP-191 signature by the partner's registered backend key, with X-Api-Deadline and optional X-Api-PublicKey headers. See the Signature and verify guide.
0x-prefixed 65-byte hex EIP-191 signature over the Partner Auth message. See the Signature and verify guide.
Unix seconds. UR rejects the request when the current time is past the deadline. Keep the validity window at or under 5 minutes.
0x-prefixed partner signer address registered with UR.
Send at least one of X-Ur-Id or X-External-User-Id. When both are present, UR resolves the user by X-Ur-Id first.
Send at least one of X-Ur-Id or X-External-User-Id. When both are present, UR resolves the user by X-Ur-Id first.
Partner-supplied idempotency key. Keep it stable across retries of the same logical operation.
Payout amount as a string. Minimum is currency-specific; see minimalPayoutAmount from the payout fees endpoint. Network and payout fees are deducted from this amount.
Contact ID from the BR profile contacts or from verify-contact.
Payout fiat currency symbol.
Payment purpose ID as a decimal string. Provide together with refId, or omit both.
Reference ID from verify-reference or verify-contact. Provide together with purposeId, or omit both.
Standard envelope. Business errors return HTTP 200 with a non-zero code.
Standard UR OpenAPI response envelope. code 0 means success; a non-zero code is a business error described by message.
0 on success; non-zero business error code.
Human-readable explanation. May be empty on success.
POST /api/fma/v1/submit-payout HTTP/1.1
Host: openapi.ur.app
X-Api-Signature: text
X-Api-Deadline: text
X-Api-PublicKey: text
Content-Type: application/json
Accept: */*
Content-Length: 289
{
"reqId": "unique-idempotency-key",
"amount": "250",
"contactId": "EA-00017418",
"currency": "EUR",
"purposeId": "1",
"refId": "REF-7A6C2A8E",
"metadata": {
"bankAccountHolder": "Alice Doe",
"bankName": "Hypothekarbank Lenzburg AG",
"bankAccount": "CH9300762011623852957",
"bankReference": "Invoice 2026-001"
}
}Standard envelope. Business errors return HTTP 200 with a non-zero code.
{
"code": 0,
"message": "",
"data": {
"txHash": "0xabc123def456..."
}
}Last updated