Admin
This page describes administrative APIs and methods.
admin_auth
Create an RPC session token to be used as the authorization token for request to private JSON-RPC API endpoints.
Parameters
Argument
Type
Description
username
String
The RPC username.
password
String
The RPC password.
Curl Example:
Console Example
Returns:
String
- JSON Web Token
Output:
admin.login
Authenticates the current console session to allow private RPC APIs to be called from the console environment. Internally, it acquires a session via admin_auth
endpoint, caches the session token and sets it on every JSON-RPC requests.
Parameters
Argument
Type
Required
Description
username
String
True
The RPC username.
password
String
False
The RPC password.
If the password
argument is omitted, an interactive session is started to collect the password. This is the recommended approach.
Console Example
Returns:
String
- JSON Web Token
Output:
Last updated