Skip to main content

Get information about the shared address DKS configuration

GET 

//v1/node/dks/:sharedAddress

Get information about the shared address DKS configuration

Request

Path Parameters

    sharedAddress stringrequired

    SharedAddress (Hex Address)

Responses

DK shares info

Schema
    addressstringrequired

    New generated shared address.

    peerIdentitiesstring[]required

    Identities of the nodes sharing the key. (Hex)

    peerIndexint32required

    Possible values: >= 1

    publicKeystringrequired

    Used public key. (Hex)

    publicKeySharesstring[]required

    Public key shares for all the peers. (Hex)

    thresholdint32required

    Possible values: >= 1

Authorization: Authorization

name: Authorizationtype: apiKeydescription: JWT Tokenin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/v1/node/dks/:sharedAddress");
request.Headers.Add("Accept", "application/json");
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!