From 60b690c6b0fabed9e66e7d5212f9597a0a9205fa Mon Sep 17 00:00:00 2001 From: Oliver Eggert Date: Mon, 12 Dec 2022 21:11:15 -0800 Subject: [PATCH] Add note to account_objects.md about commandline interface type field. --- .../public-api-methods/account-methods/account_objects.md | 2 ++ .../use-checks/look-up-checks-by-recipient.md | 1 + .../use-checks/look-up-checks-by-sender.md | 1 + 3 files changed, 4 insertions(+) diff --git a/content/references/http-websocket-apis/public-api-methods/account-methods/account_objects.md b/content/references/http-websocket-apis/public-api-methods/account-methods/account_objects.md index 15a330324b..5cf0343eb6 100644 --- a/content/references/http-websocket-apis/public-api-methods/account-methods/account_objects.md +++ b/content/references/http-websocket-apis/public-api-methods/account-methods/account_objects.md @@ -81,6 +81,8 @@ The request includes the following parameters: | `limit` | Number | _(Optional)_ The maximum number of objects to include in the results. Must be within the inclusive range `10` to `400` on non-admin connections. The default is `200`. | | `marker` | [Marker][] | _(Optional)_ Value from a previous paginated response. Resume retrieving data where that response left off. | +**Note:** The commandline interface to the `account_objects` command doesn't accept the `type` field. Use the [json method][] to send the JSON-RPC format request on the commandline instead. + ## Response Format An example of a successful response: diff --git a/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-recipient.md b/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-recipient.md index 46bddcc21d..882af8839b 100644 --- a/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-recipient.md +++ b/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-recipient.md @@ -15,6 +15,7 @@ This tutorial shows how to look up [Checks](checks.html) by their recipient. You To get a list of all incoming and outgoing Checks for an account, use the `account_objects` command with the recipient account's address and set the `type` field of the request to `checks`. + **Note:** The commandline interface to the `account_objects` command does not accept the `type` field. You can use the [json method][] to send the JSON-RPC format request on the commandline instead. ### Example Request diff --git a/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-sender.md b/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-sender.md index b273c0d6f6..619a7236c5 100644 --- a/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-sender.md +++ b/content/tutorials/use-specialized-payment-types/use-checks/look-up-checks-by-sender.md @@ -17,6 +17,7 @@ This tutorial shows how to look up [Checks](checks.html) by their sender. You ma To get a list of all incoming and outgoing Checks for an account, use the `account_objects` command with the sending account's address and set the `type` field of the request to `checks`. + **Note:** The commandline interface to the `account_objects` command does not accept the `type` field. You can use the [json method][] to send the JSON-RPC format request on the commandline instead. ### Example Request