You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keypairs will need to be initially created before any other actions can be taken. These keys will be used for encrypting/decrypting data on the client and from other users. The private keys should be stored somewhere safe (and encrypted) and never shared. The public keys generated will be used for encrypting a recipient's data and can be shared publicly.
@@ -91,7 +161,7 @@ Returns:
91
161
-`device_id`: UUID for this device
92
162
-`sig`: Public/private signing keys for the account
93
163
94
-
#### `await account.register(accountPayload)`
164
+
#### `await Account.register(accountPayload)`
95
165
96
166
Registers a new account with the API server. This method requires a verification code (`vcode`) in order for the backend to create the account. Examples on how to generate verification codes are listed below.
97
167
@@ -120,13 +190,12 @@ curl --location --request POST 'https://apiv1.telios.io/account/captcha/verify'
// Send the account object that was just signed to be stored and
157
239
// verified on the server for later authentication.
158
-
constres=awaitaccount.register(registerPayload);
240
+
constres=awaitAccount.register(registerPayload);
159
241
```
160
242
161
243
Example response:
@@ -172,26 +254,32 @@ Example response:
172
254
173
255
The `sig` returned will be required for authentication and should be stored and encrypted locally. This, along with the account's signing key will be used to create a unique access token for every request.
174
256
175
-
#### `const mailbox = new Mailbox(provider, auth)`
257
+
#### `const stats = Account.retrieveStats()`
176
258
177
-
The Mailbox class provides functionality needed for processing encrypted emails.
259
+
This method will retrieve stats about the account.
178
260
179
-
-`provider`: Base URL of the API provider
180
-
-`auth`
181
-
-`claims`
182
-
-`device_signing_key`:
183
-
-`account_key`:
184
-
-`device_peer_key`:
185
-
-`device_id`:
186
-
-`device_signing_priv_key`:
187
-
-`sig`: Signature sent from the Telios server when this account was registered.
261
+
Example Response:
262
+
```js
263
+
{
264
+
plan:"FREE", // Plan tier the account is on
265
+
daily_email_used:1, // Number of email sent since last reset aka whether or not they went over the daily quota
266
+
daily_email_reset_date:"2021-12-21T19:00:35.000+00:00", // Datea at which the daily_email_used will reset
267
+
namespace_used:1, // Number of Namespace registered by Account
268
+
aliases_used:3, // Number of Aliases registered by Account
269
+
storage_space_used:109635126// Total Space used up by Account on backup server
270
+
}
271
+
```
272
+
273
+
#### `const Mailbox = teliosSDK.Mailbox`
274
+
275
+
The Mailbox class provides functionality needed for processing encrypted emails.
188
276
189
277
Example Usage:
190
278
191
279
```js
192
-
constmailbox=newMailbox({
193
-
provider:"https://apiv1.telios.io",
194
-
auth: {
280
+
281
+
// If Auth payload hasn't been previously set do the below
282
+
constauth= {
195
283
claims: {
196
284
device_signing_key:signingKeypair.publicKey,
197
285
account_key:secretBoxKeypair.publicKey,
@@ -200,15 +288,19 @@ const mailbox = new Mailbox({
A recipient's account's public key is required for sending encrypted emails within the Telios network. `getMailboxPubKeys` takes an array of recipient's addresses and returns their corresponding public key.
225
317
@@ -228,7 +320,7 @@ A recipient's account's public key is required for sending encrypted emails with
0 commit comments