Page History
Creates key for specified user. Check 'data' example below.
Parameters
| Name | Type | Description |
data required | object | information about key |
cb optional | function | callback function |
Example
| Code Block | ||
|---|---|---|
| ||
this.createKey = function(data, cb) {
return _request({
method: 'POST',
url: '/key/create',
data: data,
callback: cb
});
}; |
Example Result
| Code Block | ||
|---|---|---|
| ||
{
name: 'newName',
user: '12345678-1234-1234-123456789098',
public: "", // base64 encoded public value
private: "" // base64 encoded private value
} |