From 3984e2bd98c2c9f81aaee43c726a4cfadde0e2c9 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Wed, 19 Nov 2014 12:33:51 -0800 Subject: [PATCH] [DOC] slight REST tweaks for clarity --- content/ripplerest_api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/ripplerest_api.md b/content/ripplerest_api.md index 8d44a6d734..c51b792959 100644 --- a/content/ripplerest_api.md +++ b/content/ripplerest_api.md @@ -18,8 +18,8 @@ Installation instructions and source code can be found in the [Ripple-REST repos #### Payments #### -* [Prepare Payment - `GET /v1/accounts/{:address}/payments/paths`](#prepare-payment) -* [Submit Payment - `POST /v1/accounts/{:address}/payments`](#submit-payment) +* [Prepare Payment - `GET /v1/accounts/{:source_address}/payments/paths/{:destination_address}/{:amount}`](#prepare-payment) +* [Submit Payment - `POST /v1/accounts/{:source_address}/payments`](#submit-payment) * [Confirm Payment - `GET /v1/accounts/{:address}/payments/{:id}`](#confirm-payment) * [Get Payment History - `GET /v1/accounts/{:address}/payments`](#get-payment-history) @@ -674,7 +674,7 @@ Get quotes for possible ways to make a particular payment. *REST* ``` -GET /v1/accounts/{:address}/payments/paths/{:destination_account}/{:destination_amount} +GET /v1/accounts/{:source_address}/payments/paths/{:destination_address}/{:amount} ```