From 71bb3fbe12b9f8377f80756511e9ff3ab9ca838b Mon Sep 17 00:00:00 2001 From: Seungwon Eugene Jeong Date: Sat, 26 Jan 2019 17:04:07 +0000 Subject: [PATCH 1/2] Fix errors in the definition Fix #416 --- _data/apidefinitions/reputation_api.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/_data/apidefinitions/reputation_api.yml b/_data/apidefinitions/reputation_api.yml index 22d5ffb8..0b66f118 100644 --- a/_data/apidefinitions/reputation_api.yml +++ b/_data/apidefinitions/reputation_api.yml @@ -7,15 +7,15 @@ for account reputations (the latter if [`hivemind`]({{ '/tutorials-recipes/using-hivemind' | relative_url }}) is fronting `follow_api`) methods: - api_method: reputation_api.get_account_reputations - since: The Mysterious Future purpose: | - Returns the reputation of accounts. Parameters: `accounts:string array`; `limit:int` + Returns the reputation of accounts. Parameters: `account_lower_bound:string`; `limit:int` * `limit` is up to 1000. - | `account` (string) | `limit` (int) | | + | `account_lower_bound` (string) | `limit` (int) | | |--------------------|-| - | `"steemit"` | 10 | Queries the reputation for account named "steemit". | + | `"steemit"` | 1 | Queries for accounts that start with "steemit", only one result. | + | `"a"` | 10 | Queries for accounts that start with "a", up to 10 results. | See [#1425](https://github.com/steemit/steem/issues/1425) parameter_json: '{"account_lower_bound":"","limit":1000}' @@ -25,7 +25,7 @@ "reputation": 0 } curl_examples: - - '{"jsonrpc":"2.0", "method":"reputation_api.get_account_reputations", "params": {"account_lower_bound": "steem"}, "id":1}' + - '{"jsonrpc":"2.0", "method":"reputation_api.get_account_reputations", "params": {"account_lower_bound": "steemit", "limit": 1}}' mainnet: - working: false - detail: "Not yet enabled." + working: true + detail: "" From 598640dd8124a2e48a816e9242842caa9edd2436 Mon Sep 17 00:00:00 2001 From: Seungwon Eugene Jeong Date: Thu, 7 Feb 2019 01:15:12 +0000 Subject: [PATCH 2/2] Fix errors in the definition Fix #416 Add "id":1 --- _data/apidefinitions/reputation_api.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/apidefinitions/reputation_api.yml b/_data/apidefinitions/reputation_api.yml index 0b66f118..a9962a0d 100644 --- a/_data/apidefinitions/reputation_api.yml +++ b/_data/apidefinitions/reputation_api.yml @@ -25,7 +25,7 @@ "reputation": 0 } curl_examples: - - '{"jsonrpc":"2.0", "method":"reputation_api.get_account_reputations", "params": {"account_lower_bound": "steemit", "limit": 1}}' + - '{"jsonrpc":"2.0", "method":"reputation_api.get_account_reputations", "params": {"account_lower_bound": "steemit", "limit": 1}, "id":1}' mainnet: working: true detail: ""