From 1c6e8832d0b3bc5f93d8088846f2b2acc7470e4f Mon Sep 17 00:00:00 2001 From: PRavaga Date: Thu, 30 Nov 2023 19:48:34 +0100 Subject: [PATCH] bulk payment details Signed-off-by: PRavaga --- docs/build/rpc-api/wallet-rpc-api/get_bulk_payments.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/build/rpc-api/wallet-rpc-api/get_bulk_payments.md b/docs/build/rpc-api/wallet-rpc-api/get_bulk_payments.md index 508fb8c..e75d833 100644 --- a/docs/build/rpc-api/wallet-rpc-api/get_bulk_payments.md +++ b/docs/build/rpc-api/wallet-rpc-api/get_bulk_payments.md @@ -8,7 +8,8 @@ Gets list of incoming transfers by given payment IDs "id": 0, "method": "get_bulk_payments", "params": { - "payment_id": "", + "payment_ids": ["00000000ff00ff00, 00000000ff00ff01"], + "min_block_height": 2000000, "allow_locked_transactions": false } } @@ -16,8 +17,9 @@ Gets list of incoming transfers by given payment IDs ### Request parameters -- payment_id - payment id of txs to search -- allow_locked_transactions - include transactions that are currently locked +- payment_ids - array of strings; payment ids of txs to search +- min_block_height - unsigned int; height of the block to start looking for payments from +- allow_locked_transactions - bool; include transactions that are currently locked ---