Skip to main content

Remove an access node.

DELETE 

//v1/chain/access-node/:peer

Remove an access node.

Request

Path Parameters

    peer stringrequired

    Name or PubKey (hex) of the trusted peer

Responses

Access node was successfully removed

Authorization: Authorization

name: Authorizationtype: apiKeydescription: JWT Tokenin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "/v1/chain/access-node/:peer");
request.Headers.Add("Authorization", "<Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
Auth
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!