From b4de01f896f88f43626ddc717109d4e7359ca09d Mon Sep 17 00:00:00 2001 From: Niko Date: Fri, 30 Dec 2022 01:51:51 +0100 Subject: [PATCH] Updated JSON RPC object to the correct sturcture The JSON object proposed for submitting had the incorrect structure for the JSON-RPC endpoint --- .../path-and-order-book-methods/nft_sell_offers.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/nft_sell_offers.md b/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/nft_sell_offers.md index f32c366860..bed5f74f8e 100644 --- a/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/nft_sell_offers.md +++ b/content/references/http-websocket-apis/public-api-methods/path-and-order-book-methods/nft_sell_offers.md @@ -34,7 +34,11 @@ An example of the request format: ```json { "method": "nft_sell_offers", - "tokenid": "00090000D0B007439B080E9B05BF62403911301A7B1F0CFAA048C0A200000007" + "params": [ + { + "nft_id": "00090000D0B007439B080E9B05BF62403911301A7B1F0CFAA048C0A200000007" + } + ] } ```