WalletIdGet()

Retrieve Wallet ID

Before calling the function make sure you have the Connector object initialized.

Understanding Connector Objectchevron-right

Function Call

Field

Type

Description

PubKey

string

Base58 Publickey

WalletIdGet("Input here Base58 PublicKey");
circle-info

Return value of function: WalletIdGetResult

Example

Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.WalletIdGetResult WalletId = connect_.WalletIdGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct");
Console.WriteLine(WalletId);
circle-info

Return value of function: WalletIdGetResult

Output of Example

Output is printed via ObjectDumper

{WalletIdGetResult}
  Status: {APIResponse}
    Code: 0
    Message: "Success: "
  WalletId: 1

Last updated

Was this helpful?