Difference between revisions of "API:Network/TrustedFP/Add"

From BNC4FREE
Jump to navigation Jump to search
(API Network Trusted Fingerprint Add Information)
 
Line 25: Line 25:
 
| network
 
| network
 
| required
 
| required
| The name of the network to be added
+
| The name of the network that requires the fingerprint adding
 
| Freenode
 
| Freenode
 
|-
 
|-
Line 35: Line 35:
 
| user
 
| user
 
| optional
 
| optional
| '''(Staff Only)''' The username to add a server to a network for
+
| '''(Staff Only)''' The username of the person of whom needs the fingerprint adding to the network
 
| AnotherTestyTest
 
| AnotherTestyTest
 
|}
 
|}

Revision as of 20:16, 22 April 2020

Resource URI

   https://api.bnc4free.com/network/trustedfp/add

Parameters

Variable Required Description Example
server required The name of the server Apple
username required Your Username TestyTest
key required Your API Key d681883383bcf7963427b1629d0b9963cf6335b5
network required The name of the network that requires the fingerprint adding Freenode
fp required The trusted fingerprint to be added for the network ec:6f:7a:15:4a:e8:e9:b2:aa:fc:1f:f4:22:9d:4c:2e:90:80:3c:ec:04:25:e2:04:99:2c:3a:ef:5e:13:dc:a6
user optional (Staff Only) The username of the person of whom needs the fingerprint adding to the network AnotherTestyTest

Example Request

   curl -XPOST 
    --url https://api.bnc4free.com/network/trustedfp/add
    -d server=Apple
    -d username=TestyTest
    -d key=d681883383bcf7963427b1629d0b9963cf6335b5
    -d network=Freenode
    -d fp=ec:6f:7a:15:4a:e8:e9:b2:aa:fc:1f:f4:22:9d:4c:2e:90:80:3c:ec:04:25:e2:04:99:2c:3a:ef:5e:13:dc:a6

Example Response

   {
      "status" : "success",
      "username" : "TestyTest",
      "trustedfps" : {
          "ec:6f:7a:15:4a:e8:e9:b2:aa:fc:1f:f4:22:9d:4c:2e:90:80:3c:ec:04:25:e2:04:99:2c:3a:ef:5e:13:dc:a6"
      }
   }