Keystore API
Path
/ext/keystoreExample Method
keystore.createUser
Example Call
//Request
curl -X POST --data '{
"jsonrpc":"2.0",
"id" :1,
"method" :"keystore.createUser",
"params" :{
"username":"test",
"password":"Test1234!"
}
}' -H 'content-type:application/json;' https://ava-api.bwarelabs.com/<your-endpoint-id>/ext/keystore
//Response
{
"jsonrpc":"2.0",
"id" :1,
"result" :{
"success":true
}
}Last updated