Create Payment Request

Create a payment request b58 code to give to someone else

Required ParamPurposeRequirements

account_id

The account on which to perform this action.

Account must exist in the wallet.

amount

The Amount to send in this transaction

Optional ParamPurposeRequirements

subaddress_index

The subaddress index on the account to generate the request with

i64

memo

Memo for the payment request

Example

{
  "method": "create_payment_request",
  "params": {
    "account_id": "60ef9401f98fc278cd8a1ef51f466111244c9d4b97e8f8886a86bd840238dcaa",
    "amount": { "value": "528000000000", "token_id": "0" },
    "subaddress_index": 1,
    "memo": "Payment for dinner with family"
  },
  "jsonrpc": "2.0",
  "id": 1
}

Last updated