Qchain
English
English
  • KNOWLEDGE BASE
    • Introduction to Qchain
    • Getting Started
    • How to run QChain node?
    • Instructions
      • How to install QNode on Linux
      • How to send tokens to staking
      • How to import an account
      • How to change the storage size
      • How to install Qnode on Andriod and register an account.
      • How to create a repository
      • How to transfer tokens between accounts
      • How to create your own token
      • How to send a file to the storage
    • Video instructions
      • How to import an account into Qchain node
      • Qchain. Import and Export of private key
      • Qchain installation Mac OS
      • Installation Qchain Node on Android
      • How to install a Qnode on Windows and register an account
    • Our tokens
    • Our products
    • Developing
      • Node API
      • Node account API
        • Export and import operations
        • Registering a new user
        • Registering a new user (2)
        • User login
        • Getting an address
        • Getting a balance
        • Getting a private key
        • Import a private key
        • Transfer
        • Request for transfer status
        • Request for list of transfers
        • Staking-Stake
        • Staking-Unstake
      • QTreasure API
        • Registration
        • List of payment gateways
        • Status payment
        • Payments
        • Purchase
        • Transaction fields
        • Transaction types
        • Transaction statuses
        • Callback response
Powered by GitBook
On this page
  1. KNOWLEDGE BASE
  2. Developing
  3. Node account API

Export and import operations

General Information

For export and import operations, you need to include in the configuration

{
	"webaccess": {
		"active": true, 
		"access_private_key": true,
		"life_time_minute": 180,
		"access_time_minute": 60
		}
}

access_time_minute - Access token lifetime in minutes (default 60m) if the values are -1, then the lifetime is not limited

life_time_minute - Access object lifetime in program memory in minutes, always greater than access_time_minute (default 180min) if the values are -1, then the lifetime is not limited

For requests "new" and "transfer" must be in header:

"Connection: keep-alive",
"Keep-Alive: timeout=5, max=100"

otherwise the server will return the wait operation number

{"success":true, "wait_id":1}
PreviousNode account APINextRegistering a new user

Last updated 1 year ago