gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: update API after discussion with Flo


From: gnunet
Subject: [taler-docs] branch master updated: update API after discussion with Florian
Date: Thu, 06 Feb 2020 13:59:24 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new a757d05  update API after discussion with Florian
a757d05 is described below

commit a757d0581eee7fae5bc058db28a71bf218276298
Author: Christian Grothoff <address@hidden>
AuthorDate: Thu Feb 6 13:59:21 2020 +0100

    update API after discussion with Florian
---
 core/api-common.rst   | 11 ++++++++++-
 core/api-exchange.rst | 32 +++++++++++++++++++-------------
 2 files changed, 29 insertions(+), 14 deletions(-)

diff --git a/core/api-common.rst b/core/api-common.rst
index 5ee4404..9584f24 100644
--- a/core/api-common.rst
+++ b/core/api-common.rst
@@ -49,11 +49,20 @@ handle the error as if an internal error (500) had been 
returned.
     The server responsible for the reserve
     changed, the client MUST follow the link to the new location. If possible,
     the client SHOULD remember the new URL for the reserve for future
-    requests.
+    requests.  Only applicable if the request method is GET.
   :status 302 Found:
+    The server responsible for the reserve changed, the
+    client MUST follow the link to the new location, but MUST NOT retain the
+    new URL for future requests.  Only applicable if the request method is GET.
+  :status 307 Temporary Redirect:
     The server responsible for the reserve changed, the
     client MUST follow the link to the new location, but MUST NOT retain the
     new URL for future requests.
+  :status 308 Permanent Redirect:
+    The server responsible for the reserve
+    changed, the client MUST follow the link to the new location. If possible,
+    the client SHOULD remember the new URL for the reserve for future
+    requests.
   :status 500 Internal server error:
     This always indicates some serious internal operational error of the 
exchange,
     such as a program bug, database problems, etc., and must not be used for
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index b14ad87..4befd2b 100644
--- a/core/api-exchange.rst
+++ b/core/api-exchange.rst
@@ -467,7 +467,7 @@ exchange.
    }
 
 
-.. http:post:: /reserves/$RESERVE_PUB
+.. http:post:: /reserves/$RESERVE_PUB/withdraw
 
   Withdraw a coin of the specified denomination.  Note that the client should
   commit all of the request details, including the private key of the coin and
@@ -530,9 +530,12 @@ exchange.
   .. ts:def:: WithdrawError
 
     interface WithdrawError {
-      // Constant "Insufficient funds"
+      // Text describing the error
       hint: string;
 
+      // Detailed error code
+      code: Integer;
+
       // Amount left in the reserve
       balance: Amount;
 
@@ -563,7 +566,7 @@ denomination.
   the digital coins.
 
   The base URL for "/coins/"-requests may differ from the main base URL of the
-  exchange. The exchange MUST return a 301 or 302 redirection to the correct
+  exchange. The exchange MUST return a 307 or 308 redirection to the correct
   base URL if this is the case.
 
   The request should contain a JSON object with the
@@ -649,7 +652,7 @@ denomination.
       // Can be used if the base URL for /transactions/ differs from that
       // for /coins/, i.e. for load balancing.  Clients SHOULD
       // respect the transaction_base_url if provided.  Any HTTP server
-      // belonging to an exchange MUST generate a 301/302 redirection
+      // belonging to an exchange MUST generate a 307 or 308 redirection
       // to the correct base URL should a client uses the wrong base
       // URL, or if the base URL has changed since the deposit.
       transaction_base_url?: string;
@@ -788,7 +791,7 @@ the API during normal operation.
   is always 3.
 
   The base URL for "/coins/"-requests may differ from the main base URL of the
-  exchange. The exchange MUST return a 301 or 302 redirection to the correct
+  exchange. The exchange MUST return a 307 or 308 redirection to the correct
   base URL if this is the case.
 
   :status 401 Unauthorized:
@@ -855,7 +858,7 @@ the API during normal operation.
       // Can be used if the base URL for /refreshes/ differs from that
       // for /coins/, i.e. for load balancing.  Clients SHOULD
       // respect the refresh_base_url if provided.  Any HTTP server
-      // belonging to an exchange MUST generate a 301/302 redirection
+      // belonging to an exchange MUST generate a 307 or 308 redirection
       // to the correct base URL should a client uses the wrong base
       // URL, or if the base URL has changed since the melt.
       //
@@ -870,9 +873,12 @@ the API during normal operation.
   .. ts:def:: MeltForbiddenResponse
 
     interface MeltForbiddenResponse {
-      // Always "insufficient funds"
+      // Text describing the error.
       hint: string;
 
+      // Detailed error code
+      code: Integer;
+
       // public key of a melted coin that had insufficient funds
       coin_pub: EddsaPublicKey;
 
@@ -892,7 +898,7 @@ the API during normal operation.
     }
 
 
-.. http:post:: /refreshes/$RCH
+.. http:post:: /refreshes/$RCH/reveal
 
   Reveal previously commited values to the exchange, except for the values
   corresponding to the ``noreveal_index`` returned by the /coins/-melt step.
@@ -904,7 +910,7 @@ the API during normal operation.
   The base URL for "/refreshes/"-requests may differ from the main base URL of
   the exchange. Clients SHOULD respect the "refresh_base_url" returned for the
   coin during melt operations. The exchange MUST return a
-  301 or 302 redirection to the correct base URL if the client failed to
+  307 or 308 redirection to the correct base URL if the client failed to
   respect the "refresh_base_url" or if the allocation has changed.
 
   Errors such as failing to do proper arithmetic when it comes to calculating
@@ -965,7 +971,7 @@ the API during normal operation.
   .. ts:def:: RevealConflictResponse
 
     interface RevealConflictResponse {
-      // Constant "commitment violation"
+      // Text describing the error
       hint: string;
 
       // Detailed error code
@@ -977,7 +983,7 @@ the API during normal operation.
     }
 
 
-.. http:get:: /coins/$COIN_PUB
+.. http:get:: /coins/$COIN_PUB/link
 
   Link the old public key of a melted coin to the coin(s) that were exchangeed 
during the refresh operation.
 
@@ -1044,7 +1050,7 @@ in using this API.
   Demand that a coin be refunded via wire transfer to the original owner.
 
   The base URL for "/coins/"-requests may differ from the main base URL of the
-  exchange. The exchange MUST return a 301 or 302 redirection to the correct
+  exchange. The exchange MUST return a 307 or 308 redirection to the correct
   base URL if this is the case.
 
 
@@ -1221,7 +1227,7 @@ typically also view the balance.)
 
     }
 
-.. http:get:: /transaction/$H_WIRE/$MERCHANT_PUB/$H_CONTRACT_TERMS/$COIN_PUB
+.. http:get:: /deposits/$H_WIRE/$MERCHANT_PUB/$H_CONTRACT_TERMS/$COIN_PUB
 
   Provide the wire transfer identifier associated with an (existing) deposit 
operation.
   The arguments are the hash of the merchant's payment details (H_WIRE), the

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]