Setting up API User
Generate Public-Private key pair for API User
1 min
https //en wikipedia org/wiki/public key cryptography are cryptographic tools used to secure communication and authenticate users in digital systems in the context of api access, these keys help ensure only authorized users can interact securely with your service there are two recommended ways to generate your public private key pair using the sdk, or using openssl from the command line option 1 using the sdk make sure you have set up the sdk call the generatepublicprivatekeypair util function in the sdk this will return your keys as strings save them securely option 2 using openssl (command line) make sure openssl is installed in your system run openssl ecparam name prime256v1 genkey noout 2>/dev/null | tee >(openssl ec pubout 2>/dev/null) this will output your private key and then your public key copy and save them securely related links docid\ kwatiybjafwy7zb7s9tnt