]> granicus.if.org Git - pdns/commitdiff
clarify HTTP method usage for remotebackend
authorPeter van Dijk <peter.van.dijk@netherlabs.nl>
Fri, 5 Oct 2012 09:06:02 +0000 (09:06 +0000)
committerPeter van Dijk <peter.van.dijk@netherlabs.nl>
Fri, 5 Oct 2012 09:06:02 +0000 (09:06 +0000)
git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@2758 d19b8d6e-7fed-0310-83ef-9ca221ded41b

pdns/docs/pdns.xml

index 8697dcc9d8331aa390dfc4dd55a51b7eb4e165e2..99e1a8293414319138974a494eb495d8f374b643 100644 (file)
@@ -17460,7 +17460,7 @@ remote-connection-string=unix:command=/path/to/executable
           </para>
           <para>
             HTTP backend calls methods based on URL and has parameters in the query string.
-            The calls are always GET calls.
+            Most calls are GET; see the methods listing for details.
           </para>
         </sect3>
         <sect3 id="remotebackend-api-replies"><title>Replies</title>
@@ -17510,23 +17510,23 @@ Method: getTSIGKey
 Parameters: name
 Reply: algorithm, content
 
-Method: setDomainMetadata
+Method: setDomainMetadata (POST)
 Parameters: name, kind, value
 Reply: true or false
 
-Method: addDomainKey
+Method: addDomainKey (POST)
 Parameters: flags, active, content
 Reply: id-of-key
 
-Method: remoteDomainKey
+Method: removeDomainKey (DELETE)
 Parameters: name, id
 Reply: true or false
 
-Method: activateDomainKey
+Method: activateDomainKey (POST)
 Parameters: name, id
 Reply: true or false
 
-Method: deactivateDomainKey
+Method: deactivateDomainKey (POST)
 Parameters: name, id
 Reply: true or false          
 </programlisting>