1
0
Fork 0
mirror of synced 2024-09-06 12:51:43 +12:00
appwrite/app/sdks/javascript/docs/examples/account/update-verification.md

9 lines
210 B
Markdown
Raw Normal View History

2020-01-28 10:50:41 +13:00
let sdk = new Appwrite();
2020-02-14 19:28:54 +13:00
let promise = sdk.account.updateVerification('[USER_ID]', '[SECRET]');
2020-01-28 10:50:41 +13:00
promise.then(function (response) {
console.log(response);
}, function (error) {
console.log(error);
});