We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfae740 commit ddf2e04Copy full SHA for ddf2e04
1 file changed
src/dtable-web-api.js
@@ -2362,7 +2362,7 @@ class DTableWebAPI {
2362
return this.req.get(url);
2363
}
2364
2365
- orgAdminSetVerification(orgID, phone, code) {
+ orgAdminUpdateVerification(orgID, phone, code) {
2366
let url = this.server + '/api/v2.1/org/' + orgID + '/admin/verification/';
2367
let data = {
2368
phone: phone,
@@ -2573,6 +2573,11 @@ class DTableWebAPI {
2573
});
2574
2575
2576
+ sysAdminUpdateOrgVerification(orgID, verification) {
2577
+ const url = this.server + '/api/v2.1/admin/organizations/' + orgID + '/org-verification/';
2578
+ return this.req.post(url, {verification: verification});
2579
+ }
2580
+
2581
sysAdminSearchOrgs(query) {
2582
let url = this.server + '/api/v2.1/admin/search-organization/';
2583
let params = {
0 commit comments