@alicloud/dytnsapi20200217 2.6.0 → 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +865 -303
- package/dist/client.js +1581 -696
- package/dist/client.js.map +1 -1
- package/package.json +7 -7
- package/src/client.ts +1352 -336
package/src/client.ts
CHANGED
|
@@ -595,12 +595,14 @@ export class DescribePhoneNumberAnalysisAIRequest extends $tea.Model {
|
|
|
595
595
|
}
|
|
596
596
|
|
|
597
597
|
export class DescribePhoneNumberAnalysisAIResponseBody extends $tea.Model {
|
|
598
|
+
accessDeniedDetail?: string;
|
|
598
599
|
code?: string;
|
|
599
600
|
data?: DescribePhoneNumberAnalysisAIResponseBodyData;
|
|
600
601
|
message?: string;
|
|
601
602
|
requestId?: string;
|
|
602
603
|
static names(): { [key: string]: string } {
|
|
603
604
|
return {
|
|
605
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
604
606
|
code: 'Code',
|
|
605
607
|
data: 'Data',
|
|
606
608
|
message: 'Message',
|
|
@@ -610,6 +612,7 @@ export class DescribePhoneNumberAnalysisAIResponseBody extends $tea.Model {
|
|
|
610
612
|
|
|
611
613
|
static types(): { [key: string]: any } {
|
|
612
614
|
return {
|
|
615
|
+
accessDeniedDetail: 'string',
|
|
613
616
|
code: 'string',
|
|
614
617
|
data: DescribePhoneNumberAnalysisAIResponseBodyData,
|
|
615
618
|
message: 'string',
|
|
@@ -1283,6 +1286,111 @@ export class GetUAIDApplyTokenSignResponse extends $tea.Model {
|
|
|
1283
1286
|
}
|
|
1284
1287
|
}
|
|
1285
1288
|
|
|
1289
|
+
export class GetUAIDConversionSignRequest extends $tea.Model {
|
|
1290
|
+
authCode?: string;
|
|
1291
|
+
carrier?: string;
|
|
1292
|
+
clientType?: string;
|
|
1293
|
+
format?: string;
|
|
1294
|
+
outId?: string;
|
|
1295
|
+
ownerId?: number;
|
|
1296
|
+
paramKey?: string;
|
|
1297
|
+
paramStr?: string;
|
|
1298
|
+
resourceOwnerAccount?: string;
|
|
1299
|
+
resourceOwnerId?: number;
|
|
1300
|
+
time?: string;
|
|
1301
|
+
static names(): { [key: string]: string } {
|
|
1302
|
+
return {
|
|
1303
|
+
authCode: 'AuthCode',
|
|
1304
|
+
carrier: 'Carrier',
|
|
1305
|
+
clientType: 'ClientType',
|
|
1306
|
+
format: 'Format',
|
|
1307
|
+
outId: 'OutId',
|
|
1308
|
+
ownerId: 'OwnerId',
|
|
1309
|
+
paramKey: 'ParamKey',
|
|
1310
|
+
paramStr: 'ParamStr',
|
|
1311
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
1312
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
1313
|
+
time: 'Time',
|
|
1314
|
+
};
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
static types(): { [key: string]: any } {
|
|
1318
|
+
return {
|
|
1319
|
+
authCode: 'string',
|
|
1320
|
+
carrier: 'string',
|
|
1321
|
+
clientType: 'string',
|
|
1322
|
+
format: 'string',
|
|
1323
|
+
outId: 'string',
|
|
1324
|
+
ownerId: 'number',
|
|
1325
|
+
paramKey: 'string',
|
|
1326
|
+
paramStr: 'string',
|
|
1327
|
+
resourceOwnerAccount: 'string',
|
|
1328
|
+
resourceOwnerId: 'number',
|
|
1329
|
+
time: 'string',
|
|
1330
|
+
};
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
constructor(map?: { [key: string]: any }) {
|
|
1334
|
+
super(map);
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
export class GetUAIDConversionSignResponseBody extends $tea.Model {
|
|
1339
|
+
accessDeniedDetail?: string;
|
|
1340
|
+
code?: string;
|
|
1341
|
+
data?: GetUAIDConversionSignResponseBodyData;
|
|
1342
|
+
message?: string;
|
|
1343
|
+
requestId?: string;
|
|
1344
|
+
static names(): { [key: string]: string } {
|
|
1345
|
+
return {
|
|
1346
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
1347
|
+
code: 'Code',
|
|
1348
|
+
data: 'Data',
|
|
1349
|
+
message: 'Message',
|
|
1350
|
+
requestId: 'RequestId',
|
|
1351
|
+
};
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
static types(): { [key: string]: any } {
|
|
1355
|
+
return {
|
|
1356
|
+
accessDeniedDetail: 'string',
|
|
1357
|
+
code: 'string',
|
|
1358
|
+
data: GetUAIDConversionSignResponseBodyData,
|
|
1359
|
+
message: 'string',
|
|
1360
|
+
requestId: 'string',
|
|
1361
|
+
};
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
constructor(map?: { [key: string]: any }) {
|
|
1365
|
+
super(map);
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
export class GetUAIDConversionSignResponse extends $tea.Model {
|
|
1370
|
+
headers?: { [key: string]: string };
|
|
1371
|
+
statusCode?: number;
|
|
1372
|
+
body?: GetUAIDConversionSignResponseBody;
|
|
1373
|
+
static names(): { [key: string]: string } {
|
|
1374
|
+
return {
|
|
1375
|
+
headers: 'headers',
|
|
1376
|
+
statusCode: 'statusCode',
|
|
1377
|
+
body: 'body',
|
|
1378
|
+
};
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
static types(): { [key: string]: any } {
|
|
1382
|
+
return {
|
|
1383
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1384
|
+
statusCode: 'number',
|
|
1385
|
+
body: GetUAIDConversionSignResponseBody,
|
|
1386
|
+
};
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
constructor(map?: { [key: string]: any }) {
|
|
1390
|
+
super(map);
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1286
1394
|
export class InvalidPhoneNumberFilterRequest extends $tea.Model {
|
|
1287
1395
|
authCode?: string;
|
|
1288
1396
|
inputNumber?: string;
|
|
@@ -2240,6 +2348,99 @@ export class QueryPhoneNumberOnlineTimeResponse extends $tea.Model {
|
|
|
2240
2348
|
}
|
|
2241
2349
|
}
|
|
2242
2350
|
|
|
2351
|
+
export class QueryPhoneTwiceTelVerifyRequest extends $tea.Model {
|
|
2352
|
+
authCode?: string;
|
|
2353
|
+
inputNumber?: string;
|
|
2354
|
+
mask?: string;
|
|
2355
|
+
ownerId?: number;
|
|
2356
|
+
resourceOwnerAccount?: string;
|
|
2357
|
+
resourceOwnerId?: number;
|
|
2358
|
+
startTime?: string;
|
|
2359
|
+
static names(): { [key: string]: string } {
|
|
2360
|
+
return {
|
|
2361
|
+
authCode: 'AuthCode',
|
|
2362
|
+
inputNumber: 'InputNumber',
|
|
2363
|
+
mask: 'Mask',
|
|
2364
|
+
ownerId: 'OwnerId',
|
|
2365
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
2366
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
2367
|
+
startTime: 'StartTime',
|
|
2368
|
+
};
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
static types(): { [key: string]: any } {
|
|
2372
|
+
return {
|
|
2373
|
+
authCode: 'string',
|
|
2374
|
+
inputNumber: 'string',
|
|
2375
|
+
mask: 'string',
|
|
2376
|
+
ownerId: 'number',
|
|
2377
|
+
resourceOwnerAccount: 'string',
|
|
2378
|
+
resourceOwnerId: 'number',
|
|
2379
|
+
startTime: 'string',
|
|
2380
|
+
};
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
constructor(map?: { [key: string]: any }) {
|
|
2384
|
+
super(map);
|
|
2385
|
+
}
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
export class QueryPhoneTwiceTelVerifyResponseBody extends $tea.Model {
|
|
2389
|
+
accessDeniedDetail?: string;
|
|
2390
|
+
code?: string;
|
|
2391
|
+
data?: QueryPhoneTwiceTelVerifyResponseBodyData;
|
|
2392
|
+
message?: string;
|
|
2393
|
+
requestId?: string;
|
|
2394
|
+
static names(): { [key: string]: string } {
|
|
2395
|
+
return {
|
|
2396
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
2397
|
+
code: 'Code',
|
|
2398
|
+
data: 'Data',
|
|
2399
|
+
message: 'Message',
|
|
2400
|
+
requestId: 'RequestId',
|
|
2401
|
+
};
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
static types(): { [key: string]: any } {
|
|
2405
|
+
return {
|
|
2406
|
+
accessDeniedDetail: 'string',
|
|
2407
|
+
code: 'string',
|
|
2408
|
+
data: QueryPhoneTwiceTelVerifyResponseBodyData,
|
|
2409
|
+
message: 'string',
|
|
2410
|
+
requestId: 'string',
|
|
2411
|
+
};
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
constructor(map?: { [key: string]: any }) {
|
|
2415
|
+
super(map);
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
export class QueryPhoneTwiceTelVerifyResponse extends $tea.Model {
|
|
2420
|
+
headers?: { [key: string]: string };
|
|
2421
|
+
statusCode?: number;
|
|
2422
|
+
body?: QueryPhoneTwiceTelVerifyResponseBody;
|
|
2423
|
+
static names(): { [key: string]: string } {
|
|
2424
|
+
return {
|
|
2425
|
+
headers: 'headers',
|
|
2426
|
+
statusCode: 'statusCode',
|
|
2427
|
+
body: 'body',
|
|
2428
|
+
};
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
static types(): { [key: string]: any } {
|
|
2432
|
+
return {
|
|
2433
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2434
|
+
statusCode: 'number',
|
|
2435
|
+
body: QueryPhoneTwiceTelVerifyResponseBody,
|
|
2436
|
+
};
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
constructor(map?: { [key: string]: any }) {
|
|
2440
|
+
super(map);
|
|
2441
|
+
}
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2243
2444
|
export class QueryTagApplyRuleRequest extends $tea.Model {
|
|
2244
2445
|
ownerId?: number;
|
|
2245
2446
|
resourceOwnerAccount?: string;
|
|
@@ -2780,7 +2981,7 @@ export class TwoElementsVerificationResponse extends $tea.Model {
|
|
|
2780
2981
|
}
|
|
2781
2982
|
}
|
|
2782
2983
|
|
|
2783
|
-
export class
|
|
2984
|
+
export class UAIDCollectionRequest extends $tea.Model {
|
|
2784
2985
|
authCode?: string;
|
|
2785
2986
|
carrier?: string;
|
|
2786
2987
|
ip?: string;
|
|
@@ -2826,18 +3027,18 @@ export class UAIDVerificationRequest extends $tea.Model {
|
|
|
2826
3027
|
}
|
|
2827
3028
|
}
|
|
2828
3029
|
|
|
2829
|
-
export class
|
|
3030
|
+
export class UAIDCollectionResponseBody extends $tea.Model {
|
|
2830
3031
|
accessDeniedDetail?: string;
|
|
2831
3032
|
code?: string;
|
|
2832
|
-
data?: UAIDVerificationResponseBodyData;
|
|
2833
3033
|
message?: string;
|
|
3034
|
+
model?: UAIDCollectionResponseBodyModel;
|
|
2834
3035
|
requestId?: string;
|
|
2835
3036
|
static names(): { [key: string]: string } {
|
|
2836
3037
|
return {
|
|
2837
3038
|
accessDeniedDetail: 'AccessDeniedDetail',
|
|
2838
3039
|
code: 'Code',
|
|
2839
|
-
data: 'Data',
|
|
2840
3040
|
message: 'Message',
|
|
3041
|
+
model: 'Model',
|
|
2841
3042
|
requestId: 'RequestId',
|
|
2842
3043
|
};
|
|
2843
3044
|
}
|
|
@@ -2846,8 +3047,8 @@ export class UAIDVerificationResponseBody extends $tea.Model {
|
|
|
2846
3047
|
return {
|
|
2847
3048
|
accessDeniedDetail: 'string',
|
|
2848
3049
|
code: 'string',
|
|
2849
|
-
data: UAIDVerificationResponseBodyData,
|
|
2850
3050
|
message: 'string',
|
|
3051
|
+
model: UAIDCollectionResponseBodyModel,
|
|
2851
3052
|
requestId: 'string',
|
|
2852
3053
|
};
|
|
2853
3054
|
}
|
|
@@ -2857,10 +3058,10 @@ export class UAIDVerificationResponseBody extends $tea.Model {
|
|
|
2857
3058
|
}
|
|
2858
3059
|
}
|
|
2859
3060
|
|
|
2860
|
-
export class
|
|
3061
|
+
export class UAIDCollectionResponse extends $tea.Model {
|
|
2861
3062
|
headers?: { [key: string]: string };
|
|
2862
3063
|
statusCode?: number;
|
|
2863
|
-
body?:
|
|
3064
|
+
body?: UAIDCollectionResponseBody;
|
|
2864
3065
|
static names(): { [key: string]: string } {
|
|
2865
3066
|
return {
|
|
2866
3067
|
headers: 'headers',
|
|
@@ -2873,7 +3074,7 @@ export class UAIDVerificationResponse extends $tea.Model {
|
|
|
2873
3074
|
return {
|
|
2874
3075
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2875
3076
|
statusCode: 'number',
|
|
2876
|
-
body:
|
|
3077
|
+
body: UAIDCollectionResponseBody,
|
|
2877
3078
|
};
|
|
2878
3079
|
}
|
|
2879
3080
|
|
|
@@ -2882,17 +3083,35 @@ export class UAIDVerificationResponse extends $tea.Model {
|
|
|
2882
3083
|
}
|
|
2883
3084
|
}
|
|
2884
3085
|
|
|
2885
|
-
export class
|
|
2886
|
-
|
|
3086
|
+
export class UAIDConversionRequest extends $tea.Model {
|
|
3087
|
+
authCode?: string;
|
|
3088
|
+
carrier?: string;
|
|
3089
|
+
outId?: string;
|
|
3090
|
+
ownerId?: number;
|
|
3091
|
+
resourceOwnerAccount?: string;
|
|
3092
|
+
resourceOwnerId?: number;
|
|
3093
|
+
uaidList?: string;
|
|
2887
3094
|
static names(): { [key: string]: string } {
|
|
2888
3095
|
return {
|
|
2889
|
-
|
|
3096
|
+
authCode: 'AuthCode',
|
|
3097
|
+
carrier: 'Carrier',
|
|
3098
|
+
outId: 'OutId',
|
|
3099
|
+
ownerId: 'OwnerId',
|
|
3100
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
3101
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
3102
|
+
uaidList: 'UaidList',
|
|
2890
3103
|
};
|
|
2891
3104
|
}
|
|
2892
3105
|
|
|
2893
3106
|
static types(): { [key: string]: any } {
|
|
2894
3107
|
return {
|
|
2895
|
-
|
|
3108
|
+
authCode: 'string',
|
|
3109
|
+
carrier: 'string',
|
|
3110
|
+
outId: 'string',
|
|
3111
|
+
ownerId: 'number',
|
|
3112
|
+
resourceOwnerAccount: 'string',
|
|
3113
|
+
resourceOwnerId: 'number',
|
|
3114
|
+
uaidList: 'string',
|
|
2896
3115
|
};
|
|
2897
3116
|
}
|
|
2898
3117
|
|
|
@@ -2901,20 +3120,29 @@ export class CertNoTwoElementVerificationResponseBodyData extends $tea.Model {
|
|
|
2901
3120
|
}
|
|
2902
3121
|
}
|
|
2903
3122
|
|
|
2904
|
-
export class
|
|
2905
|
-
|
|
2906
|
-
|
|
3123
|
+
export class UAIDConversionResponseBody extends $tea.Model {
|
|
3124
|
+
accessDeniedDetail?: string;
|
|
3125
|
+
code?: string;
|
|
3126
|
+
message?: string;
|
|
3127
|
+
model?: UAIDConversionResponseBodyModel;
|
|
3128
|
+
requestId?: string;
|
|
2907
3129
|
static names(): { [key: string]: string } {
|
|
2908
3130
|
return {
|
|
2909
|
-
|
|
2910
|
-
|
|
3131
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
3132
|
+
code: 'Code',
|
|
3133
|
+
message: 'Message',
|
|
3134
|
+
model: 'Model',
|
|
3135
|
+
requestId: 'RequestId',
|
|
2911
3136
|
};
|
|
2912
3137
|
}
|
|
2913
3138
|
|
|
2914
3139
|
static types(): { [key: string]: any } {
|
|
2915
3140
|
return {
|
|
2916
|
-
|
|
2917
|
-
|
|
3141
|
+
accessDeniedDetail: 'string',
|
|
3142
|
+
code: 'string',
|
|
3143
|
+
message: 'string',
|
|
3144
|
+
model: UAIDConversionResponseBodyModel,
|
|
3145
|
+
requestId: 'string',
|
|
2918
3146
|
};
|
|
2919
3147
|
}
|
|
2920
3148
|
|
|
@@ -2923,26 +3151,194 @@ export class CompanyFourElementsVerificationResponseBodyDataDetailInfo extends $
|
|
|
2923
3151
|
}
|
|
2924
3152
|
}
|
|
2925
3153
|
|
|
2926
|
-
export class
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
verifyResult?: string;
|
|
3154
|
+
export class UAIDConversionResponse extends $tea.Model {
|
|
3155
|
+
headers?: { [key: string]: string };
|
|
3156
|
+
statusCode?: number;
|
|
3157
|
+
body?: UAIDConversionResponseBody;
|
|
2931
3158
|
static names(): { [key: string]: string } {
|
|
2932
3159
|
return {
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
verifyResult: 'VerifyResult',
|
|
3160
|
+
headers: 'headers',
|
|
3161
|
+
statusCode: 'statusCode',
|
|
3162
|
+
body: 'body',
|
|
2937
3163
|
};
|
|
2938
3164
|
}
|
|
2939
3165
|
|
|
2940
3166
|
static types(): { [key: string]: any } {
|
|
2941
3167
|
return {
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
3168
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3169
|
+
statusCode: 'number',
|
|
3170
|
+
body: UAIDConversionResponseBody,
|
|
3171
|
+
};
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3174
|
+
constructor(map?: { [key: string]: any }) {
|
|
3175
|
+
super(map);
|
|
3176
|
+
}
|
|
3177
|
+
}
|
|
3178
|
+
|
|
3179
|
+
export class UAIDVerificationRequest extends $tea.Model {
|
|
3180
|
+
authCode?: string;
|
|
3181
|
+
carrier?: string;
|
|
3182
|
+
ip?: string;
|
|
3183
|
+
outId?: string;
|
|
3184
|
+
ownerId?: number;
|
|
3185
|
+
province?: string;
|
|
3186
|
+
resourceOwnerAccount?: string;
|
|
3187
|
+
resourceOwnerId?: number;
|
|
3188
|
+
token?: string;
|
|
3189
|
+
userGrantId?: string;
|
|
3190
|
+
static names(): { [key: string]: string } {
|
|
3191
|
+
return {
|
|
3192
|
+
authCode: 'AuthCode',
|
|
3193
|
+
carrier: 'Carrier',
|
|
3194
|
+
ip: 'Ip',
|
|
3195
|
+
outId: 'OutId',
|
|
3196
|
+
ownerId: 'OwnerId',
|
|
3197
|
+
province: 'Province',
|
|
3198
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
3199
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
3200
|
+
token: 'Token',
|
|
3201
|
+
userGrantId: 'UserGrantId',
|
|
3202
|
+
};
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
static types(): { [key: string]: any } {
|
|
3206
|
+
return {
|
|
3207
|
+
authCode: 'string',
|
|
3208
|
+
carrier: 'string',
|
|
3209
|
+
ip: 'string',
|
|
3210
|
+
outId: 'string',
|
|
3211
|
+
ownerId: 'number',
|
|
3212
|
+
province: 'string',
|
|
3213
|
+
resourceOwnerAccount: 'string',
|
|
3214
|
+
resourceOwnerId: 'number',
|
|
3215
|
+
token: 'string',
|
|
3216
|
+
userGrantId: 'string',
|
|
3217
|
+
};
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3220
|
+
constructor(map?: { [key: string]: any }) {
|
|
3221
|
+
super(map);
|
|
3222
|
+
}
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
export class UAIDVerificationResponseBody extends $tea.Model {
|
|
3226
|
+
accessDeniedDetail?: string;
|
|
3227
|
+
code?: string;
|
|
3228
|
+
data?: UAIDVerificationResponseBodyData;
|
|
3229
|
+
message?: string;
|
|
3230
|
+
requestId?: string;
|
|
3231
|
+
static names(): { [key: string]: string } {
|
|
3232
|
+
return {
|
|
3233
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
3234
|
+
code: 'Code',
|
|
3235
|
+
data: 'Data',
|
|
3236
|
+
message: 'Message',
|
|
3237
|
+
requestId: 'RequestId',
|
|
3238
|
+
};
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
static types(): { [key: string]: any } {
|
|
3242
|
+
return {
|
|
3243
|
+
accessDeniedDetail: 'string',
|
|
3244
|
+
code: 'string',
|
|
3245
|
+
data: UAIDVerificationResponseBodyData,
|
|
3246
|
+
message: 'string',
|
|
3247
|
+
requestId: 'string',
|
|
3248
|
+
};
|
|
3249
|
+
}
|
|
3250
|
+
|
|
3251
|
+
constructor(map?: { [key: string]: any }) {
|
|
3252
|
+
super(map);
|
|
3253
|
+
}
|
|
3254
|
+
}
|
|
3255
|
+
|
|
3256
|
+
export class UAIDVerificationResponse extends $tea.Model {
|
|
3257
|
+
headers?: { [key: string]: string };
|
|
3258
|
+
statusCode?: number;
|
|
3259
|
+
body?: UAIDVerificationResponseBody;
|
|
3260
|
+
static names(): { [key: string]: string } {
|
|
3261
|
+
return {
|
|
3262
|
+
headers: 'headers',
|
|
3263
|
+
statusCode: 'statusCode',
|
|
3264
|
+
body: 'body',
|
|
3265
|
+
};
|
|
3266
|
+
}
|
|
3267
|
+
|
|
3268
|
+
static types(): { [key: string]: any } {
|
|
3269
|
+
return {
|
|
3270
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3271
|
+
statusCode: 'number',
|
|
3272
|
+
body: UAIDVerificationResponseBody,
|
|
3273
|
+
};
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
constructor(map?: { [key: string]: any }) {
|
|
3277
|
+
super(map);
|
|
3278
|
+
}
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
export class CertNoTwoElementVerificationResponseBodyData extends $tea.Model {
|
|
3282
|
+
isConsistent?: string;
|
|
3283
|
+
static names(): { [key: string]: string } {
|
|
3284
|
+
return {
|
|
3285
|
+
isConsistent: 'IsConsistent',
|
|
3286
|
+
};
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
static types(): { [key: string]: any } {
|
|
3290
|
+
return {
|
|
3291
|
+
isConsistent: 'string',
|
|
3292
|
+
};
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
constructor(map?: { [key: string]: any }) {
|
|
3296
|
+
super(map);
|
|
3297
|
+
}
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
|
+
export class CompanyFourElementsVerificationResponseBodyDataDetailInfo extends $tea.Model {
|
|
3301
|
+
enterpriseStatus?: string;
|
|
3302
|
+
openTime?: string;
|
|
3303
|
+
static names(): { [key: string]: string } {
|
|
3304
|
+
return {
|
|
3305
|
+
enterpriseStatus: 'EnterpriseStatus',
|
|
3306
|
+
openTime: 'OpenTime',
|
|
3307
|
+
};
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
static types(): { [key: string]: any } {
|
|
3311
|
+
return {
|
|
3312
|
+
enterpriseStatus: 'string',
|
|
3313
|
+
openTime: 'string',
|
|
3314
|
+
};
|
|
3315
|
+
}
|
|
3316
|
+
|
|
3317
|
+
constructor(map?: { [key: string]: any }) {
|
|
3318
|
+
super(map);
|
|
3319
|
+
}
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
export class CompanyFourElementsVerificationResponseBodyData extends $tea.Model {
|
|
3323
|
+
detailInfo?: CompanyFourElementsVerificationResponseBodyDataDetailInfo;
|
|
3324
|
+
inconsistentData?: string[];
|
|
3325
|
+
reasonCode?: number;
|
|
3326
|
+
verifyResult?: string;
|
|
3327
|
+
static names(): { [key: string]: string } {
|
|
3328
|
+
return {
|
|
3329
|
+
detailInfo: 'DetailInfo',
|
|
3330
|
+
inconsistentData: 'InconsistentData',
|
|
3331
|
+
reasonCode: 'ReasonCode',
|
|
3332
|
+
verifyResult: 'VerifyResult',
|
|
3333
|
+
};
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3336
|
+
static types(): { [key: string]: any } {
|
|
3337
|
+
return {
|
|
3338
|
+
detailInfo: CompanyFourElementsVerificationResponseBodyDataDetailInfo,
|
|
3339
|
+
inconsistentData: { 'type': 'array', 'itemType': 'string' },
|
|
3340
|
+
reasonCode: 'number',
|
|
3341
|
+
verifyResult: 'string',
|
|
2946
3342
|
};
|
|
2947
3343
|
}
|
|
2948
3344
|
|
|
@@ -3323,6 +3719,31 @@ export class GetUAIDApplyTokenSignResponseBodyData extends $tea.Model {
|
|
|
3323
3719
|
}
|
|
3324
3720
|
}
|
|
3325
3721
|
|
|
3722
|
+
export class GetUAIDConversionSignResponseBodyData extends $tea.Model {
|
|
3723
|
+
carrier?: string;
|
|
3724
|
+
outId?: string;
|
|
3725
|
+
sign?: string;
|
|
3726
|
+
static names(): { [key: string]: string } {
|
|
3727
|
+
return {
|
|
3728
|
+
carrier: 'Carrier',
|
|
3729
|
+
outId: 'OutId',
|
|
3730
|
+
sign: 'Sign',
|
|
3731
|
+
};
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
static types(): { [key: string]: any } {
|
|
3735
|
+
return {
|
|
3736
|
+
carrier: 'string',
|
|
3737
|
+
outId: 'string',
|
|
3738
|
+
sign: 'string',
|
|
3739
|
+
};
|
|
3740
|
+
}
|
|
3741
|
+
|
|
3742
|
+
constructor(map?: { [key: string]: any }) {
|
|
3743
|
+
super(map);
|
|
3744
|
+
}
|
|
3745
|
+
}
|
|
3746
|
+
|
|
3326
3747
|
export class InvalidPhoneNumberFilterResponseBodyData extends $tea.Model {
|
|
3327
3748
|
code?: string;
|
|
3328
3749
|
encryptedNumber?: string;
|
|
@@ -3555,6 +3976,28 @@ export class QueryPhoneNumberOnlineTimeResponseBodyData extends $tea.Model {
|
|
|
3555
3976
|
}
|
|
3556
3977
|
}
|
|
3557
3978
|
|
|
3979
|
+
export class QueryPhoneTwiceTelVerifyResponseBodyData extends $tea.Model {
|
|
3980
|
+
carrierCode?: string;
|
|
3981
|
+
verifyResult?: number;
|
|
3982
|
+
static names(): { [key: string]: string } {
|
|
3983
|
+
return {
|
|
3984
|
+
carrierCode: 'CarrierCode',
|
|
3985
|
+
verifyResult: 'VerifyResult',
|
|
3986
|
+
};
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
static types(): { [key: string]: any } {
|
|
3990
|
+
return {
|
|
3991
|
+
carrierCode: 'string',
|
|
3992
|
+
verifyResult: 'number',
|
|
3993
|
+
};
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
constructor(map?: { [key: string]: any }) {
|
|
3997
|
+
super(map);
|
|
3998
|
+
}
|
|
3999
|
+
}
|
|
4000
|
+
|
|
3558
4001
|
export class QueryTagApplyRuleResponseBodyData extends $tea.Model {
|
|
3559
4002
|
applyMaterialDesc?: string;
|
|
3560
4003
|
autoAudit?: number;
|
|
@@ -3879,6 +4322,44 @@ export class TwoElementsVerificationResponseBodyData extends $tea.Model {
|
|
|
3879
4322
|
}
|
|
3880
4323
|
}
|
|
3881
4324
|
|
|
4325
|
+
export class UAIDCollectionResponseBodyModel extends $tea.Model {
|
|
4326
|
+
uaid?: string;
|
|
4327
|
+
static names(): { [key: string]: string } {
|
|
4328
|
+
return {
|
|
4329
|
+
uaid: 'Uaid',
|
|
4330
|
+
};
|
|
4331
|
+
}
|
|
4332
|
+
|
|
4333
|
+
static types(): { [key: string]: any } {
|
|
4334
|
+
return {
|
|
4335
|
+
uaid: 'string',
|
|
4336
|
+
};
|
|
4337
|
+
}
|
|
4338
|
+
|
|
4339
|
+
constructor(map?: { [key: string]: any }) {
|
|
4340
|
+
super(map);
|
|
4341
|
+
}
|
|
4342
|
+
}
|
|
4343
|
+
|
|
4344
|
+
export class UAIDConversionResponseBodyModel extends $tea.Model {
|
|
4345
|
+
phoneList?: string;
|
|
4346
|
+
static names(): { [key: string]: string } {
|
|
4347
|
+
return {
|
|
4348
|
+
phoneList: 'PhoneList',
|
|
4349
|
+
};
|
|
4350
|
+
}
|
|
4351
|
+
|
|
4352
|
+
static types(): { [key: string]: any } {
|
|
4353
|
+
return {
|
|
4354
|
+
phoneList: 'string',
|
|
4355
|
+
};
|
|
4356
|
+
}
|
|
4357
|
+
|
|
4358
|
+
constructor(map?: { [key: string]: any }) {
|
|
4359
|
+
super(map);
|
|
4360
|
+
}
|
|
4361
|
+
}
|
|
4362
|
+
|
|
3882
4363
|
export class UAIDVerificationResponseBodyData extends $tea.Model {
|
|
3883
4364
|
uaid?: string;
|
|
3884
4365
|
static names(): { [key: string]: string } {
|
|
@@ -3921,6 +4402,13 @@ export default class Client extends OpenApi {
|
|
|
3921
4402
|
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
3922
4403
|
}
|
|
3923
4404
|
|
|
4405
|
+
/**
|
|
4406
|
+
* @summary 身份证二要素认证
|
|
4407
|
+
*
|
|
4408
|
+
* @param request CertNoTwoElementVerificationRequest
|
|
4409
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4410
|
+
* @return CertNoTwoElementVerificationResponse
|
|
4411
|
+
*/
|
|
3924
4412
|
async certNoTwoElementVerificationWithOptions(request: CertNoTwoElementVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CertNoTwoElementVerificationResponse> {
|
|
3925
4413
|
Util.validateModel(request);
|
|
3926
4414
|
let query = { };
|
|
@@ -3965,19 +4453,27 @@ export default class Client extends OpenApi {
|
|
|
3965
4453
|
return $tea.cast<CertNoTwoElementVerificationResponse>(await this.callApi(params, req, runtime), new CertNoTwoElementVerificationResponse({}));
|
|
3966
4454
|
}
|
|
3967
4455
|
|
|
4456
|
+
/**
|
|
4457
|
+
* @summary 身份证二要素认证
|
|
4458
|
+
*
|
|
4459
|
+
* @param request CertNoTwoElementVerificationRequest
|
|
4460
|
+
* @return CertNoTwoElementVerificationResponse
|
|
4461
|
+
*/
|
|
3968
4462
|
async certNoTwoElementVerification(request: CertNoTwoElementVerificationRequest): Promise<CertNoTwoElementVerificationResponse> {
|
|
3969
4463
|
let runtime = new $Util.RuntimeOptions({ });
|
|
3970
4464
|
return await this.certNoTwoElementVerificationWithOptions(request, runtime);
|
|
3971
4465
|
}
|
|
3972
4466
|
|
|
3973
4467
|
/**
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
4468
|
+
* @summary Verifies whether the enterprise name, the business license number, and the name and ID card of the legal representative belong to the same enterprise. The verification is successful only when the preceding four elements belong to the same enterprise and the business status of the enterprise is Active.
|
|
4469
|
+
*
|
|
4470
|
+
* @description * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
4471
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
4472
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4473
|
+
*
|
|
4474
|
+
* @param request CompanyFourElementsVerificationRequest
|
|
4475
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4476
|
+
* @return CompanyFourElementsVerificationResponse
|
|
3981
4477
|
*/
|
|
3982
4478
|
async companyFourElementsVerificationWithOptions(request: CompanyFourElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyFourElementsVerificationResponse> {
|
|
3983
4479
|
Util.validateModel(request);
|
|
@@ -4032,12 +4528,14 @@ export default class Client extends OpenApi {
|
|
|
4032
4528
|
}
|
|
4033
4529
|
|
|
4034
4530
|
/**
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4531
|
+
* @summary Verifies whether the enterprise name, the business license number, and the name and ID card of the legal representative belong to the same enterprise. The verification is successful only when the preceding four elements belong to the same enterprise and the business status of the enterprise is Active.
|
|
4532
|
+
*
|
|
4533
|
+
* @description * Before you call this operation, make sure that you are familiar with the billing of services related to four-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
4534
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
4535
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4536
|
+
*
|
|
4537
|
+
* @param request CompanyFourElementsVerificationRequest
|
|
4538
|
+
* @return CompanyFourElementsVerificationResponse
|
|
4041
4539
|
*/
|
|
4042
4540
|
async companyFourElementsVerification(request: CompanyFourElementsVerificationRequest): Promise<CompanyFourElementsVerificationResponse> {
|
|
4043
4541
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -4045,13 +4543,15 @@ export default class Client extends OpenApi {
|
|
|
4045
4543
|
}
|
|
4046
4544
|
|
|
4047
4545
|
/**
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4546
|
+
* @summary Verifies whether the enterprise name, the business license number, and the name of the legal representative belong to the same enterprise. The verification is successful only when the three elements belong to the same enterprise and the business status of the enterprise is Active.
|
|
4547
|
+
*
|
|
4548
|
+
* @description * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
4549
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
4550
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4551
|
+
*
|
|
4552
|
+
* @param request CompanyThreeElementsVerificationRequest
|
|
4553
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4554
|
+
* @return CompanyThreeElementsVerificationResponse
|
|
4055
4555
|
*/
|
|
4056
4556
|
async companyThreeElementsVerificationWithOptions(request: CompanyThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyThreeElementsVerificationResponse> {
|
|
4057
4557
|
Util.validateModel(request);
|
|
@@ -4102,12 +4602,14 @@ export default class Client extends OpenApi {
|
|
|
4102
4602
|
}
|
|
4103
4603
|
|
|
4104
4604
|
/**
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4605
|
+
* @summary Verifies whether the enterprise name, the business license number, and the name of the legal representative belong to the same enterprise. The verification is successful only when the three elements belong to the same enterprise and the business status of the enterprise is Active.
|
|
4606
|
+
*
|
|
4607
|
+
* @description * Before you call this operation, make sure that you are familiar with the billing of services related to three-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
4608
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0, 1, or 2.
|
|
4609
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4610
|
+
*
|
|
4611
|
+
* @param request CompanyThreeElementsVerificationRequest
|
|
4612
|
+
* @return CompanyThreeElementsVerificationResponse
|
|
4111
4613
|
*/
|
|
4112
4614
|
async companyThreeElementsVerification(request: CompanyThreeElementsVerificationRequest): Promise<CompanyThreeElementsVerificationResponse> {
|
|
4113
4615
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -4115,13 +4617,15 @@ export default class Client extends OpenApi {
|
|
|
4115
4617
|
}
|
|
4116
4618
|
|
|
4117
4619
|
/**
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4620
|
+
* @summary Verifies whether the enterprise name and the business license number belong to the same enterprise. The verification is successful only when the two elements belong to the same enterprise and the business status of the enterprise is Active.
|
|
4621
|
+
*
|
|
4622
|
+
* @description * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
4623
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
|
|
4624
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4625
|
+
*
|
|
4626
|
+
* @param request CompanyTwoElementsVerificationRequest
|
|
4627
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4628
|
+
* @return CompanyTwoElementsVerificationResponse
|
|
4125
4629
|
*/
|
|
4126
4630
|
async companyTwoElementsVerificationWithOptions(request: CompanyTwoElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<CompanyTwoElementsVerificationResponse> {
|
|
4127
4631
|
Util.validateModel(request);
|
|
@@ -4168,12 +4672,14 @@ export default class Client extends OpenApi {
|
|
|
4168
4672
|
}
|
|
4169
4673
|
|
|
4170
4674
|
/**
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4675
|
+
* @summary Verifies whether the enterprise name and the business license number belong to the same enterprise. The verification is successful only when the two elements belong to the same enterprise and the business status of the enterprise is Active.
|
|
4676
|
+
*
|
|
4677
|
+
* @description * Before you call this operation, make sure that you are familiar with the billing of services related to two-element verification for enterprises. For more information, see [Billing](https://help.aliyun.com/document_detail/154751.html?spm=a2c4g.154007.0.0.3edd7eb6E90YT4).
|
|
4678
|
+
* * You are charged only if the value of VerifyResult is true or false and the value of ReasonCode is 0 or 1.
|
|
4679
|
+
* * Before you call this operation, perform the following operations: Log on to the [Cell Phone Number Service console](https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fdytns.console.aliyun.com%2Foverview%3Fspm%3Da2c4g.608385.0.0.79847f8b3awqUC\\&lang=zh). On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4680
|
+
*
|
|
4681
|
+
* @param request CompanyTwoElementsVerificationRequest
|
|
4682
|
+
* @return CompanyTwoElementsVerificationResponse
|
|
4177
4683
|
*/
|
|
4178
4684
|
async companyTwoElementsVerification(request: CompanyTwoElementsVerificationRequest): Promise<CompanyTwoElementsVerificationResponse> {
|
|
4179
4685
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -4181,18 +4687,20 @@ export default class Client extends OpenApi {
|
|
|
4181
4687
|
}
|
|
4182
4688
|
|
|
4183
4689
|
/**
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4690
|
+
* @summary Predicts whether a phone number is a nonexistent number by using AI algorithms.
|
|
4691
|
+
*
|
|
4692
|
+
* @description * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
|
|
4693
|
+
* * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
|
|
4694
|
+
* * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
|
|
4695
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4696
|
+
* ### [](#qps)QPS limits
|
|
4697
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
4698
|
+
* ### [](#)Authorization information
|
|
4699
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
4700
|
+
*
|
|
4701
|
+
* @param request DescribeEmptyNumberRequest
|
|
4702
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4703
|
+
* @return DescribeEmptyNumberResponse
|
|
4196
4704
|
*/
|
|
4197
4705
|
async describeEmptyNumberWithOptions(request: DescribeEmptyNumberRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEmptyNumberResponse> {
|
|
4198
4706
|
Util.validateModel(request);
|
|
@@ -4239,23 +4747,32 @@ export default class Client extends OpenApi {
|
|
|
4239
4747
|
}
|
|
4240
4748
|
|
|
4241
4749
|
/**
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4750
|
+
* @summary Predicts whether a phone number is a nonexistent number by using AI algorithms.
|
|
4751
|
+
*
|
|
4752
|
+
* @description * You can call this operation to verify whether a phone number is a nonexistent number. When you call this operation to verify a number, the system charges you CNY 0.01 per verification based on the number of verifications. **Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.**
|
|
4753
|
+
* * You are charged only if the value of Code is OK and the value of Status is not UNKNOWN.
|
|
4754
|
+
* * The prediction is not strictly accurate because Cell Phone Number Service predicts the nonexistent number probability by using AI algorithms. The accuracy rate of the prediction and the recall rate of empty numbers are about 95%. **Pay attention to this point when you call this operation**.
|
|
4755
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
4756
|
+
* ### [](#qps)QPS limits
|
|
4757
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
4758
|
+
* ### [](#)Authorization information
|
|
4759
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
4760
|
+
*
|
|
4761
|
+
* @param request DescribeEmptyNumberRequest
|
|
4762
|
+
* @return DescribeEmptyNumberResponse
|
|
4253
4763
|
*/
|
|
4254
4764
|
async describeEmptyNumber(request: DescribeEmptyNumberRequest): Promise<DescribeEmptyNumberResponse> {
|
|
4255
4765
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4256
4766
|
return await this.describeEmptyNumberWithOptions(request, runtime);
|
|
4257
4767
|
}
|
|
4258
4768
|
|
|
4769
|
+
/**
|
|
4770
|
+
* @summary 号码分析实时查询蚂蚁
|
|
4771
|
+
*
|
|
4772
|
+
* @param request DescribePhoneNumberAnalysisRequest
|
|
4773
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4774
|
+
* @return DescribePhoneNumberAnalysisResponse
|
|
4775
|
+
*/
|
|
4259
4776
|
async describePhoneNumberAnalysisWithOptions(request: DescribePhoneNumberAnalysisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisResponse> {
|
|
4260
4777
|
Util.validateModel(request);
|
|
4261
4778
|
let query = { };
|
|
@@ -4308,17 +4825,25 @@ export default class Client extends OpenApi {
|
|
|
4308
4825
|
return $tea.cast<DescribePhoneNumberAnalysisResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAnalysisResponse({}));
|
|
4309
4826
|
}
|
|
4310
4827
|
|
|
4311
|
-
|
|
4828
|
+
/**
|
|
4829
|
+
* @summary 号码分析实时查询蚂蚁
|
|
4830
|
+
*
|
|
4831
|
+
* @param request DescribePhoneNumberAnalysisRequest
|
|
4832
|
+
* @return DescribePhoneNumberAnalysisResponse
|
|
4833
|
+
*/
|
|
4834
|
+
async describePhoneNumberAnalysis(request: DescribePhoneNumberAnalysisRequest): Promise<DescribePhoneNumberAnalysisResponse> {
|
|
4312
4835
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4313
4836
|
return await this.describePhoneNumberAnalysisWithOptions(request, runtime);
|
|
4314
4837
|
}
|
|
4315
4838
|
|
|
4316
4839
|
/**
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4840
|
+
* @summary Obtains the analysis results of a phone number.
|
|
4841
|
+
*
|
|
4842
|
+
* @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
|
|
4843
|
+
*
|
|
4844
|
+
* @param request DescribePhoneNumberAnalysisAIRequest
|
|
4845
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4846
|
+
* @return DescribePhoneNumberAnalysisAIResponse
|
|
4322
4847
|
*/
|
|
4323
4848
|
async describePhoneNumberAnalysisAIWithOptions(request: DescribePhoneNumberAnalysisAIRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisAIResponse> {
|
|
4324
4849
|
Util.validateModel(request);
|
|
@@ -4369,16 +4894,25 @@ export default class Client extends OpenApi {
|
|
|
4369
4894
|
}
|
|
4370
4895
|
|
|
4371
4896
|
/**
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4897
|
+
* @summary Obtains the analysis results of a phone number.
|
|
4898
|
+
*
|
|
4899
|
+
* @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the Labels page, find the label that you want to use, click Activate Now, enter the required information, and then submit your application. After your application is approved, you can use the label. Before you call this operation, make sure that you are familiar with the billing of Cell Phone Number Service.
|
|
4900
|
+
*
|
|
4901
|
+
* @param request DescribePhoneNumberAnalysisAIRequest
|
|
4902
|
+
* @return DescribePhoneNumberAnalysisAIResponse
|
|
4376
4903
|
*/
|
|
4377
4904
|
async describePhoneNumberAnalysisAI(request: DescribePhoneNumberAnalysisAIRequest): Promise<DescribePhoneNumberAnalysisAIResponse> {
|
|
4378
4905
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4379
4906
|
return await this.describePhoneNumberAnalysisAIWithOptions(request, runtime);
|
|
4380
4907
|
}
|
|
4381
4908
|
|
|
4909
|
+
/**
|
|
4910
|
+
* @summary 泛行业人群筛选
|
|
4911
|
+
*
|
|
4912
|
+
* @param request DescribePhoneNumberAnalysisTransparentRequest
|
|
4913
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4914
|
+
* @return DescribePhoneNumberAnalysisTransparentResponse
|
|
4915
|
+
*/
|
|
4382
4916
|
async describePhoneNumberAnalysisTransparentWithOptions(request: DescribePhoneNumberAnalysisTransparentRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAnalysisTransparentResponse> {
|
|
4383
4917
|
Util.validateModel(request);
|
|
4384
4918
|
let query = { };
|
|
@@ -4427,21 +4961,30 @@ export default class Client extends OpenApi {
|
|
|
4427
4961
|
return $tea.cast<DescribePhoneNumberAnalysisTransparentResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberAnalysisTransparentResponse({}));
|
|
4428
4962
|
}
|
|
4429
4963
|
|
|
4964
|
+
/**
|
|
4965
|
+
* @summary 泛行业人群筛选
|
|
4966
|
+
*
|
|
4967
|
+
* @param request DescribePhoneNumberAnalysisTransparentRequest
|
|
4968
|
+
* @return DescribePhoneNumberAnalysisTransparentResponse
|
|
4969
|
+
*/
|
|
4430
4970
|
async describePhoneNumberAnalysisTransparent(request: DescribePhoneNumberAnalysisTransparentRequest): Promise<DescribePhoneNumberAnalysisTransparentResponse> {
|
|
4431
4971
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4432
4972
|
return await this.describePhoneNumberAnalysisTransparentWithOptions(request, runtime);
|
|
4433
4973
|
}
|
|
4434
4974
|
|
|
4435
4975
|
/**
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4976
|
+
* @deprecated OpenAPI DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
|
|
4977
|
+
*
|
|
4978
|
+
* @summary Queries the carrier, registration location, and mobile number portability information of a phone number.
|
|
4979
|
+
*
|
|
4980
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
4981
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
4982
|
+
* ### [](#qps)QPS limits
|
|
4983
|
+
* You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
4984
|
+
*
|
|
4985
|
+
* @param request DescribePhoneNumberAttributeRequest
|
|
4986
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
4987
|
+
* @return DescribePhoneNumberAttributeResponse
|
|
4445
4988
|
*/
|
|
4446
4989
|
// Deprecated
|
|
4447
4990
|
async describePhoneNumberAttributeWithOptions(request: DescribePhoneNumberAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberAttributeResponse> {
|
|
@@ -4481,14 +5024,17 @@ export default class Client extends OpenApi {
|
|
|
4481
5024
|
}
|
|
4482
5025
|
|
|
4483
5026
|
/**
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
5027
|
+
* @deprecated OpenAPI DescribePhoneNumberAttribute is deprecated, please use Dytnsapi::2020-02-17::DescribePhoneNumberOperatorAttribute instead.
|
|
5028
|
+
*
|
|
5029
|
+
* @summary Queries the carrier, registration location, and mobile number portability information of a phone number.
|
|
5030
|
+
*
|
|
5031
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5032
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5033
|
+
* ### [](#qps)QPS limits
|
|
5034
|
+
* You can call this operation up to 2,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5035
|
+
*
|
|
5036
|
+
* @param request DescribePhoneNumberAttributeRequest
|
|
5037
|
+
* @return DescribePhoneNumberAttributeResponse
|
|
4492
5038
|
*/
|
|
4493
5039
|
// Deprecated
|
|
4494
5040
|
async describePhoneNumberAttribute(request: DescribePhoneNumberAttributeRequest): Promise<DescribePhoneNumberAttributeResponse> {
|
|
@@ -4497,14 +5043,16 @@ export default class Client extends OpenApi {
|
|
|
4497
5043
|
}
|
|
4498
5044
|
|
|
4499
5045
|
/**
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
5046
|
+
* @summary Queries the usage period of a phone number of a user.
|
|
5047
|
+
*
|
|
5048
|
+
* @description * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5049
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5050
|
+
* ### [](#qps)QPS limits
|
|
5051
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5052
|
+
*
|
|
5053
|
+
* @param request DescribePhoneNumberOnlineTimeRequest
|
|
5054
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5055
|
+
* @return DescribePhoneNumberOnlineTimeResponse
|
|
4508
5056
|
*/
|
|
4509
5057
|
async describePhoneNumberOnlineTimeWithOptions(request: DescribePhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOnlineTimeResponse> {
|
|
4510
5058
|
Util.validateModel(request);
|
|
@@ -4555,13 +5103,15 @@ export default class Client extends OpenApi {
|
|
|
4555
5103
|
}
|
|
4556
5104
|
|
|
4557
5105
|
/**
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
-
|
|
5106
|
+
* @summary Queries the usage period of a phone number of a user.
|
|
5107
|
+
*
|
|
5108
|
+
* @description * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5109
|
+
* * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5110
|
+
* ### [](#qps)QPS limits
|
|
5111
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5112
|
+
*
|
|
5113
|
+
* @param request DescribePhoneNumberOnlineTimeRequest
|
|
5114
|
+
* @return DescribePhoneNumberOnlineTimeResponse
|
|
4565
5115
|
*/
|
|
4566
5116
|
async describePhoneNumberOnlineTime(request: DescribePhoneNumberOnlineTimeRequest): Promise<DescribePhoneNumberOnlineTimeResponse> {
|
|
4567
5117
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -4569,14 +5119,16 @@ export default class Client extends OpenApi {
|
|
|
4569
5119
|
}
|
|
4570
5120
|
|
|
4571
5121
|
/**
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
5122
|
+
* @summary Queries the attribute information about a phone number, including the registration province, registration city, basic carrier (such as China Mobile, China Unicom, China Telecom, or China Broadnet), reseller of mobile communications services (such as Alibaba Communications), mobile number portability, and the number segment to which the phone number belongs.
|
|
5123
|
+
*
|
|
5124
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154008.html) of Cell Phone Number Service.
|
|
5125
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5126
|
+
* * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
|
|
5127
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5128
|
+
*
|
|
5129
|
+
* @param request DescribePhoneNumberOperatorAttributeRequest
|
|
5130
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5131
|
+
* @return DescribePhoneNumberOperatorAttributeResponse
|
|
4580
5132
|
*/
|
|
4581
5133
|
async describePhoneNumberOperatorAttributeWithOptions(request: DescribePhoneNumberOperatorAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberOperatorAttributeResponse> {
|
|
4582
5134
|
Util.validateModel(request);
|
|
@@ -4623,19 +5175,28 @@ export default class Client extends OpenApi {
|
|
|
4623
5175
|
}
|
|
4624
5176
|
|
|
4625
5177
|
/**
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
5178
|
+
* @summary Queries the attribute information about a phone number, including the registration province, registration city, basic carrier (such as China Mobile, China Unicom, China Telecom, or China Broadnet), reseller of mobile communications services (such as Alibaba Communications), mobile number portability, and the number segment to which the phone number belongs.
|
|
5179
|
+
*
|
|
5180
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154008.html) of Cell Phone Number Service.
|
|
5181
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5182
|
+
* * You can call this operation to obtain the carrier, registration location, and mobile number portability information about a phone number. You can query phone numbers in **plaintext** and phone numbers that are encrypted by using **MD5** and **SHA256**.
|
|
5183
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5184
|
+
*
|
|
5185
|
+
* @param request DescribePhoneNumberOperatorAttributeRequest
|
|
5186
|
+
* @return DescribePhoneNumberOperatorAttributeResponse
|
|
4633
5187
|
*/
|
|
4634
5188
|
async describePhoneNumberOperatorAttribute(request: DescribePhoneNumberOperatorAttributeRequest): Promise<DescribePhoneNumberOperatorAttributeResponse> {
|
|
4635
5189
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4636
5190
|
return await this.describePhoneNumberOperatorAttributeWithOptions(request, runtime);
|
|
4637
5191
|
}
|
|
4638
5192
|
|
|
5193
|
+
/**
|
|
5194
|
+
* @summary 风险用户评分
|
|
5195
|
+
*
|
|
5196
|
+
* @param request DescribePhoneNumberRiskRequest
|
|
5197
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5198
|
+
* @return DescribePhoneNumberRiskResponse
|
|
5199
|
+
*/
|
|
4639
5200
|
async describePhoneNumberRiskWithOptions(request: DescribePhoneNumberRiskRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneNumberRiskResponse> {
|
|
4640
5201
|
Util.validateModel(request);
|
|
4641
5202
|
let query = { };
|
|
@@ -4680,23 +5241,31 @@ export default class Client extends OpenApi {
|
|
|
4680
5241
|
return $tea.cast<DescribePhoneNumberRiskResponse>(await this.callApi(params, req, runtime), new DescribePhoneNumberRiskResponse({}));
|
|
4681
5242
|
}
|
|
4682
5243
|
|
|
5244
|
+
/**
|
|
5245
|
+
* @summary 风险用户评分
|
|
5246
|
+
*
|
|
5247
|
+
* @param request DescribePhoneNumberRiskRequest
|
|
5248
|
+
* @return DescribePhoneNumberRiskResponse
|
|
5249
|
+
*/
|
|
4683
5250
|
async describePhoneNumberRisk(request: DescribePhoneNumberRiskRequest): Promise<DescribePhoneNumberRiskResponse> {
|
|
4684
5251
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4685
5252
|
return await this.describePhoneNumberRiskWithOptions(request, runtime);
|
|
4686
5253
|
}
|
|
4687
5254
|
|
|
4688
5255
|
/**
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
5256
|
+
* @summary Verifies whether a phone number is a reassigned phone number by calling this operation.
|
|
5257
|
+
*
|
|
5258
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5259
|
+
* * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
|
|
5260
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5261
|
+
* ## [](#qps)QPS limits
|
|
5262
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5263
|
+
* ## [](#)Authorization information
|
|
5264
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5265
|
+
*
|
|
5266
|
+
* @param request DescribePhoneTwiceTelVerifyRequest
|
|
5267
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5268
|
+
* @return DescribePhoneTwiceTelVerifyResponse
|
|
4700
5269
|
*/
|
|
4701
5270
|
async describePhoneTwiceTelVerifyWithOptions(request: DescribePhoneTwiceTelVerifyRequest, runtime: $Util.RuntimeOptions): Promise<DescribePhoneTwiceTelVerifyResponse> {
|
|
4702
5271
|
Util.validateModel(request);
|
|
@@ -4747,22 +5316,31 @@ export default class Client extends OpenApi {
|
|
|
4747
5316
|
}
|
|
4748
5317
|
|
|
4749
5318
|
/**
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
5319
|
+
* @summary Verifies whether a phone number is a reassigned phone number by calling this operation.
|
|
5320
|
+
*
|
|
5321
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5322
|
+
* * You are charged for phone number verifications only if the value of Code is OK and the value of VerifyResult is not 0.
|
|
5323
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5324
|
+
* ## [](#qps)QPS limits
|
|
5325
|
+
* You can call this operation up to 100 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5326
|
+
* ## [](#)Authorization information
|
|
5327
|
+
* By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5328
|
+
*
|
|
5329
|
+
* @param request DescribePhoneTwiceTelVerifyRequest
|
|
5330
|
+
* @return DescribePhoneTwiceTelVerifyResponse
|
|
4760
5331
|
*/
|
|
4761
5332
|
async describePhoneTwiceTelVerify(request: DescribePhoneTwiceTelVerifyRequest): Promise<DescribePhoneTwiceTelVerifyResponse> {
|
|
4762
5333
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4763
5334
|
return await this.describePhoneTwiceTelVerifyWithOptions(request, runtime);
|
|
4764
5335
|
}
|
|
4765
5336
|
|
|
5337
|
+
/**
|
|
5338
|
+
* @summary 获取UAID申请Token所需的签名字段
|
|
5339
|
+
*
|
|
5340
|
+
* @param request GetUAIDApplyTokenSignRequest
|
|
5341
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5342
|
+
* @return GetUAIDApplyTokenSignResponse
|
|
5343
|
+
*/
|
|
4766
5344
|
async getUAIDApplyTokenSignWithOptions(request: GetUAIDApplyTokenSignRequest, runtime: $Util.RuntimeOptions): Promise<GetUAIDApplyTokenSignResponse> {
|
|
4767
5345
|
Util.validateModel(request);
|
|
4768
5346
|
let query = { };
|
|
@@ -4827,19 +5405,109 @@ export default class Client extends OpenApi {
|
|
|
4827
5405
|
return $tea.cast<GetUAIDApplyTokenSignResponse>(await this.callApi(params, req, runtime), new GetUAIDApplyTokenSignResponse({}));
|
|
4828
5406
|
}
|
|
4829
5407
|
|
|
5408
|
+
/**
|
|
5409
|
+
* @summary 获取UAID申请Token所需的签名字段
|
|
5410
|
+
*
|
|
5411
|
+
* @param request GetUAIDApplyTokenSignRequest
|
|
5412
|
+
* @return GetUAIDApplyTokenSignResponse
|
|
5413
|
+
*/
|
|
4830
5414
|
async getUAIDApplyTokenSign(request: GetUAIDApplyTokenSignRequest): Promise<GetUAIDApplyTokenSignResponse> {
|
|
4831
5415
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4832
5416
|
return await this.getUAIDApplyTokenSignWithOptions(request, runtime);
|
|
4833
5417
|
}
|
|
4834
5418
|
|
|
4835
5419
|
/**
|
|
4836
|
-
|
|
4837
|
-
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
5420
|
+
* @summary 获取号码采集服务申请Token所需的签名字段
|
|
5421
|
+
*
|
|
5422
|
+
* @param request GetUAIDConversionSignRequest
|
|
5423
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5424
|
+
* @return GetUAIDConversionSignResponse
|
|
5425
|
+
*/
|
|
5426
|
+
async getUAIDConversionSignWithOptions(request: GetUAIDConversionSignRequest, runtime: $Util.RuntimeOptions): Promise<GetUAIDConversionSignResponse> {
|
|
5427
|
+
Util.validateModel(request);
|
|
5428
|
+
let query = { };
|
|
5429
|
+
if (!Util.isUnset(request.authCode)) {
|
|
5430
|
+
query["AuthCode"] = request.authCode;
|
|
5431
|
+
}
|
|
5432
|
+
|
|
5433
|
+
if (!Util.isUnset(request.carrier)) {
|
|
5434
|
+
query["Carrier"] = request.carrier;
|
|
5435
|
+
}
|
|
5436
|
+
|
|
5437
|
+
if (!Util.isUnset(request.clientType)) {
|
|
5438
|
+
query["ClientType"] = request.clientType;
|
|
5439
|
+
}
|
|
5440
|
+
|
|
5441
|
+
if (!Util.isUnset(request.format)) {
|
|
5442
|
+
query["Format"] = request.format;
|
|
5443
|
+
}
|
|
5444
|
+
|
|
5445
|
+
if (!Util.isUnset(request.outId)) {
|
|
5446
|
+
query["OutId"] = request.outId;
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
5450
|
+
query["OwnerId"] = request.ownerId;
|
|
5451
|
+
}
|
|
5452
|
+
|
|
5453
|
+
if (!Util.isUnset(request.paramKey)) {
|
|
5454
|
+
query["ParamKey"] = request.paramKey;
|
|
5455
|
+
}
|
|
5456
|
+
|
|
5457
|
+
if (!Util.isUnset(request.paramStr)) {
|
|
5458
|
+
query["ParamStr"] = request.paramStr;
|
|
5459
|
+
}
|
|
5460
|
+
|
|
5461
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
5462
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
5463
|
+
}
|
|
5464
|
+
|
|
5465
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
5466
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
5467
|
+
}
|
|
5468
|
+
|
|
5469
|
+
if (!Util.isUnset(request.time)) {
|
|
5470
|
+
query["Time"] = request.time;
|
|
5471
|
+
}
|
|
5472
|
+
|
|
5473
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
5474
|
+
query: OpenApiUtil.query(query),
|
|
5475
|
+
});
|
|
5476
|
+
let params = new $OpenApi.Params({
|
|
5477
|
+
action: "GetUAIDConversionSign",
|
|
5478
|
+
version: "2020-02-17",
|
|
5479
|
+
protocol: "HTTPS",
|
|
5480
|
+
pathname: "/",
|
|
5481
|
+
method: "POST",
|
|
5482
|
+
authType: "AK",
|
|
5483
|
+
style: "RPC",
|
|
5484
|
+
reqBodyType: "formData",
|
|
5485
|
+
bodyType: "json",
|
|
5486
|
+
});
|
|
5487
|
+
return $tea.cast<GetUAIDConversionSignResponse>(await this.callApi(params, req, runtime), new GetUAIDConversionSignResponse({}));
|
|
5488
|
+
}
|
|
5489
|
+
|
|
5490
|
+
/**
|
|
5491
|
+
* @summary 获取号码采集服务申请Token所需的签名字段
|
|
5492
|
+
*
|
|
5493
|
+
* @param request GetUAIDConversionSignRequest
|
|
5494
|
+
* @return GetUAIDConversionSignResponse
|
|
5495
|
+
*/
|
|
5496
|
+
async getUAIDConversionSign(request: GetUAIDConversionSignRequest): Promise<GetUAIDConversionSignResponse> {
|
|
5497
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
5498
|
+
return await this.getUAIDConversionSignWithOptions(request, runtime);
|
|
5499
|
+
}
|
|
5500
|
+
|
|
5501
|
+
/**
|
|
5502
|
+
* @summary Filters invalid phone numbers.
|
|
5503
|
+
*
|
|
5504
|
+
* @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5505
|
+
* ### [](#qps)QPS limits
|
|
5506
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5507
|
+
*
|
|
5508
|
+
* @param request InvalidPhoneNumberFilterRequest
|
|
5509
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5510
|
+
* @return InvalidPhoneNumberFilterResponse
|
|
4843
5511
|
*/
|
|
4844
5512
|
async invalidPhoneNumberFilterWithOptions(request: InvalidPhoneNumberFilterRequest, runtime: $Util.RuntimeOptions): Promise<InvalidPhoneNumberFilterResponse> {
|
|
4845
5513
|
Util.validateModel(request);
|
|
@@ -4886,18 +5554,25 @@ export default class Client extends OpenApi {
|
|
|
4886
5554
|
}
|
|
4887
5555
|
|
|
4888
5556
|
/**
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
5557
|
+
* @summary Filters invalid phone numbers.
|
|
5558
|
+
*
|
|
5559
|
+
* @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5560
|
+
* ### [](#qps)QPS limits
|
|
5561
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5562
|
+
*
|
|
5563
|
+
* @param request InvalidPhoneNumberFilterRequest
|
|
5564
|
+
* @return InvalidPhoneNumberFilterResponse
|
|
4895
5565
|
*/
|
|
4896
5566
|
async invalidPhoneNumberFilter(request: InvalidPhoneNumberFilterRequest): Promise<InvalidPhoneNumberFilterResponse> {
|
|
4897
5567
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4898
5568
|
return await this.invalidPhoneNumberFilterWithOptions(request, runtime);
|
|
4899
5569
|
}
|
|
4900
5570
|
|
|
5571
|
+
/**
|
|
5572
|
+
* @param request PhoneNumberConvertServiceRequest
|
|
5573
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5574
|
+
* @return PhoneNumberConvertServiceResponse
|
|
5575
|
+
*/
|
|
4901
5576
|
async phoneNumberConvertServiceWithOptions(request: PhoneNumberConvertServiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberConvertServiceResponse> {
|
|
4902
5577
|
Util.validateModel(request);
|
|
4903
5578
|
let query = { };
|
|
@@ -4942,19 +5617,25 @@ export default class Client extends OpenApi {
|
|
|
4942
5617
|
return $tea.cast<PhoneNumberConvertServiceResponse>(await this.callApi(params, req, runtime), new PhoneNumberConvertServiceResponse({}));
|
|
4943
5618
|
}
|
|
4944
5619
|
|
|
5620
|
+
/**
|
|
5621
|
+
* @param request PhoneNumberConvertServiceRequest
|
|
5622
|
+
* @return PhoneNumberConvertServiceResponse
|
|
5623
|
+
*/
|
|
4945
5624
|
async phoneNumberConvertService(request: PhoneNumberConvertServiceRequest): Promise<PhoneNumberConvertServiceResponse> {
|
|
4946
5625
|
let runtime = new $Util.RuntimeOptions({ });
|
|
4947
5626
|
return await this.phoneNumberConvertServiceWithOptions(request, runtime);
|
|
4948
5627
|
}
|
|
4949
5628
|
|
|
4950
5629
|
/**
|
|
4951
|
-
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
5630
|
+
* @summary Encrypts the original phone number into a virtual number that starts with 140. Cell Phone Number Service integrates the communications services provided by Alibaba Cloud. This allows you to initiate a call by using a virtual number that starts with 140.
|
|
5631
|
+
*
|
|
5632
|
+
* @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5633
|
+
* ### [](#qps)QPS limits
|
|
5634
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5635
|
+
*
|
|
5636
|
+
* @param request PhoneNumberEncryptRequest
|
|
5637
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5638
|
+
* @return PhoneNumberEncryptResponse
|
|
4958
5639
|
*/
|
|
4959
5640
|
async phoneNumberEncryptWithOptions(request: PhoneNumberEncryptRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberEncryptResponse> {
|
|
4960
5641
|
Util.validateModel(request);
|
|
@@ -5001,12 +5682,14 @@ export default class Client extends OpenApi {
|
|
|
5001
5682
|
}
|
|
5002
5683
|
|
|
5003
5684
|
/**
|
|
5004
|
-
|
|
5005
|
-
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5685
|
+
* @summary Encrypts the original phone number into a virtual number that starts with 140. Cell Phone Number Service integrates the communications services provided by Alibaba Cloud. This allows you to initiate a call by using a virtual number that starts with 140.
|
|
5686
|
+
*
|
|
5687
|
+
* @description Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5688
|
+
* ### [](#qps)QPS limits
|
|
5689
|
+
* You can call this operation up to 1,000 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5690
|
+
*
|
|
5691
|
+
* @param request PhoneNumberEncryptRequest
|
|
5692
|
+
* @return PhoneNumberEncryptResponse
|
|
5010
5693
|
*/
|
|
5011
5694
|
async phoneNumberEncrypt(request: PhoneNumberEncryptRequest): Promise<PhoneNumberEncryptResponse> {
|
|
5012
5695
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -5014,15 +5697,17 @@ export default class Client extends OpenApi {
|
|
|
5014
5697
|
}
|
|
5015
5698
|
|
|
5016
5699
|
/**
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
5700
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5701
|
+
*
|
|
5702
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5703
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5704
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5705
|
+
* ### [](#qps)QPS limits
|
|
5706
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5707
|
+
*
|
|
5708
|
+
* @param request PhoneNumberStatusForAccountRequest
|
|
5709
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5710
|
+
* @return PhoneNumberStatusForAccountResponse
|
|
5026
5711
|
*/
|
|
5027
5712
|
async phoneNumberStatusForAccountWithOptions(request: PhoneNumberStatusForAccountRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForAccountResponse> {
|
|
5028
5713
|
Util.validateModel(request);
|
|
@@ -5069,14 +5754,16 @@ export default class Client extends OpenApi {
|
|
|
5069
5754
|
}
|
|
5070
5755
|
|
|
5071
5756
|
/**
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5757
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5758
|
+
*
|
|
5759
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5760
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5761
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5762
|
+
* ### [](#qps)QPS limits
|
|
5763
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5764
|
+
*
|
|
5765
|
+
* @param request PhoneNumberStatusForAccountRequest
|
|
5766
|
+
* @return PhoneNumberStatusForAccountResponse
|
|
5080
5767
|
*/
|
|
5081
5768
|
async phoneNumberStatusForAccount(request: PhoneNumberStatusForAccountRequest): Promise<PhoneNumberStatusForAccountResponse> {
|
|
5082
5769
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -5084,15 +5771,17 @@ export default class Client extends OpenApi {
|
|
|
5084
5771
|
}
|
|
5085
5772
|
|
|
5086
5773
|
/**
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
|
|
5095
|
-
|
|
5774
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5775
|
+
*
|
|
5776
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5777
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5778
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5779
|
+
* ### [](#qps)QPS limits
|
|
5780
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5781
|
+
*
|
|
5782
|
+
* @param request PhoneNumberStatusForPublicRequest
|
|
5783
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5784
|
+
* @return PhoneNumberStatusForPublicResponse
|
|
5096
5785
|
*/
|
|
5097
5786
|
async phoneNumberStatusForPublicWithOptions(request: PhoneNumberStatusForPublicRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForPublicResponse> {
|
|
5098
5787
|
Util.validateModel(request);
|
|
@@ -5139,14 +5828,16 @@ export default class Client extends OpenApi {
|
|
|
5139
5828
|
}
|
|
5140
5829
|
|
|
5141
5830
|
/**
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
|
|
5831
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5832
|
+
*
|
|
5833
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5834
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5835
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5836
|
+
* ### [](#qps)QPS limits
|
|
5837
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5838
|
+
*
|
|
5839
|
+
* @param request PhoneNumberStatusForPublicRequest
|
|
5840
|
+
* @return PhoneNumberStatusForPublicResponse
|
|
5150
5841
|
*/
|
|
5151
5842
|
async phoneNumberStatusForPublic(request: PhoneNumberStatusForPublicRequest): Promise<PhoneNumberStatusForPublicResponse> {
|
|
5152
5843
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -5154,15 +5845,17 @@ export default class Client extends OpenApi {
|
|
|
5154
5845
|
}
|
|
5155
5846
|
|
|
5156
5847
|
/**
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
|
|
5848
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5849
|
+
*
|
|
5850
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5851
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5852
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5853
|
+
* ### [](#qps)QPS limits
|
|
5854
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5855
|
+
*
|
|
5856
|
+
* @param request PhoneNumberStatusForRealRequest
|
|
5857
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5858
|
+
* @return PhoneNumberStatusForRealResponse
|
|
5166
5859
|
*/
|
|
5167
5860
|
async phoneNumberStatusForRealWithOptions(request: PhoneNumberStatusForRealRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForRealResponse> {
|
|
5168
5861
|
Util.validateModel(request);
|
|
@@ -5209,14 +5902,16 @@ export default class Client extends OpenApi {
|
|
|
5209
5902
|
}
|
|
5210
5903
|
|
|
5211
5904
|
/**
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5905
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5906
|
+
*
|
|
5907
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5908
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5909
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5910
|
+
* ### [](#qps)QPS limits
|
|
5911
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5912
|
+
*
|
|
5913
|
+
* @param request PhoneNumberStatusForRealRequest
|
|
5914
|
+
* @return PhoneNumberStatusForRealResponse
|
|
5220
5915
|
*/
|
|
5221
5916
|
async phoneNumberStatusForReal(request: PhoneNumberStatusForRealRequest): Promise<PhoneNumberStatusForRealResponse> {
|
|
5222
5917
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -5224,15 +5919,17 @@ export default class Client extends OpenApi {
|
|
|
5224
5919
|
}
|
|
5225
5920
|
|
|
5226
5921
|
/**
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5922
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5923
|
+
*
|
|
5924
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5925
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5926
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5927
|
+
* ### [](#qps)QPS limits
|
|
5928
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5929
|
+
*
|
|
5930
|
+
* @param request PhoneNumberStatusForSmsRequest
|
|
5931
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5932
|
+
* @return PhoneNumberStatusForSmsResponse
|
|
5236
5933
|
*/
|
|
5237
5934
|
async phoneNumberStatusForSmsWithOptions(request: PhoneNumberStatusForSmsRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForSmsResponse> {
|
|
5238
5935
|
Util.validateModel(request);
|
|
@@ -5279,14 +5976,16 @@ export default class Client extends OpenApi {
|
|
|
5279
5976
|
}
|
|
5280
5977
|
|
|
5281
5978
|
/**
|
|
5282
|
-
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
|
|
5979
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5980
|
+
*
|
|
5981
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5982
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
5983
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
5984
|
+
* ### [](#qps)QPS limits
|
|
5985
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
5986
|
+
*
|
|
5987
|
+
* @param request PhoneNumberStatusForSmsRequest
|
|
5988
|
+
* @return PhoneNumberStatusForSmsResponse
|
|
5290
5989
|
*/
|
|
5291
5990
|
async phoneNumberStatusForSms(request: PhoneNumberStatusForSmsRequest): Promise<PhoneNumberStatusForSmsResponse> {
|
|
5292
5991
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -5294,16 +5993,18 @@ export default class Client extends OpenApi {
|
|
|
5294
5993
|
}
|
|
5295
5994
|
|
|
5296
5995
|
/**
|
|
5297
|
-
|
|
5298
|
-
|
|
5299
|
-
|
|
5300
|
-
|
|
5301
|
-
|
|
5302
|
-
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
|
|
5996
|
+
* @summary Queries the status of a virtual phone number. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
5997
|
+
*
|
|
5998
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
5999
|
+
* * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
|
|
6000
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
6001
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6002
|
+
* ### [](#qps)QPS limits
|
|
6003
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6004
|
+
*
|
|
6005
|
+
* @param request PhoneNumberStatusForVirtualRequest
|
|
6006
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6007
|
+
* @return PhoneNumberStatusForVirtualResponse
|
|
5307
6008
|
*/
|
|
5308
6009
|
async phoneNumberStatusForVirtualWithOptions(request: PhoneNumberStatusForVirtualRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVirtualResponse> {
|
|
5309
6010
|
Util.validateModel(request);
|
|
@@ -5350,15 +6051,17 @@ export default class Client extends OpenApi {
|
|
|
5350
6051
|
}
|
|
5351
6052
|
|
|
5352
6053
|
/**
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
6054
|
+
* @summary Queries the status of a virtual phone number. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
6055
|
+
*
|
|
6056
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
6057
|
+
* * You are charged only if the value of Code is OK and the value of IsPrivacyNumber is true or false.
|
|
6058
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
6059
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6060
|
+
* ### [](#qps)QPS limits
|
|
6061
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6062
|
+
*
|
|
6063
|
+
* @param request PhoneNumberStatusForVirtualRequest
|
|
6064
|
+
* @return PhoneNumberStatusForVirtualResponse
|
|
5362
6065
|
*/
|
|
5363
6066
|
async phoneNumberStatusForVirtual(request: PhoneNumberStatusForVirtualRequest): Promise<PhoneNumberStatusForVirtualResponse> {
|
|
5364
6067
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -5366,15 +6069,17 @@ export default class Client extends OpenApi {
|
|
|
5366
6069
|
}
|
|
5367
6070
|
|
|
5368
6071
|
/**
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
6072
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
6073
|
+
*
|
|
6074
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
6075
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
6076
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6077
|
+
* ### [](#qps)QPS limits
|
|
6078
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6079
|
+
*
|
|
6080
|
+
* @param request PhoneNumberStatusForVoiceRequest
|
|
6081
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6082
|
+
* @return PhoneNumberStatusForVoiceResponse
|
|
5378
6083
|
*/
|
|
5379
6084
|
async phoneNumberStatusForVoiceWithOptions(request: PhoneNumberStatusForVoiceRequest, runtime: $Util.RuntimeOptions): Promise<PhoneNumberStatusForVoiceResponse> {
|
|
5380
6085
|
Util.validateModel(request);
|
|
@@ -5421,20 +6126,29 @@ export default class Client extends OpenApi {
|
|
|
5421
6126
|
}
|
|
5422
6127
|
|
|
5423
6128
|
/**
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
|
|
6129
|
+
* @summary Queries the real-time service state of a phone number. The state includes NORMAL, SHUTDOWN, and NOT_EXIST. You can choose an encryption method for your phone number query, including plaintext, MD5, and SHA256.
|
|
6130
|
+
*
|
|
6131
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
6132
|
+
* * By default, only Alibaba Cloud accounts can call this operation. RAM users can call this operation only after the RAM users are granted the related permissions. For more information, see [Grant permissions to RAM users](https://help.aliyun.com/document_detail/154006.html).
|
|
6133
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6134
|
+
* ### [](#qps)QPS limits
|
|
6135
|
+
* You can call this operation up to 300 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6136
|
+
*
|
|
6137
|
+
* @param request PhoneNumberStatusForVoiceRequest
|
|
6138
|
+
* @return PhoneNumberStatusForVoiceResponse
|
|
5432
6139
|
*/
|
|
5433
6140
|
async phoneNumberStatusForVoice(request: PhoneNumberStatusForVoiceRequest): Promise<PhoneNumberStatusForVoiceResponse> {
|
|
5434
6141
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5435
6142
|
return await this.phoneNumberStatusForVoiceWithOptions(request, runtime);
|
|
5436
6143
|
}
|
|
5437
6144
|
|
|
6145
|
+
/**
|
|
6146
|
+
* @summary Queries available authorization codes.
|
|
6147
|
+
*
|
|
6148
|
+
* @param request QueryAvailableAuthCodeRequest
|
|
6149
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6150
|
+
* @return QueryAvailableAuthCodeResponse
|
|
6151
|
+
*/
|
|
5438
6152
|
async queryAvailableAuthCodeWithOptions(request: QueryAvailableAuthCodeRequest, runtime: $Util.RuntimeOptions): Promise<QueryAvailableAuthCodeResponse> {
|
|
5439
6153
|
Util.validateModel(request);
|
|
5440
6154
|
let query = { };
|
|
@@ -5471,11 +6185,24 @@ export default class Client extends OpenApi {
|
|
|
5471
6185
|
return $tea.cast<QueryAvailableAuthCodeResponse>(await this.callApi(params, req, runtime), new QueryAvailableAuthCodeResponse({}));
|
|
5472
6186
|
}
|
|
5473
6187
|
|
|
6188
|
+
/**
|
|
6189
|
+
* @summary Queries available authorization codes.
|
|
6190
|
+
*
|
|
6191
|
+
* @param request QueryAvailableAuthCodeRequest
|
|
6192
|
+
* @return QueryAvailableAuthCodeResponse
|
|
6193
|
+
*/
|
|
5474
6194
|
async queryAvailableAuthCode(request: QueryAvailableAuthCodeRequest): Promise<QueryAvailableAuthCodeResponse> {
|
|
5475
6195
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5476
6196
|
return await this.queryAvailableAuthCodeWithOptions(request, runtime);
|
|
5477
6197
|
}
|
|
5478
6198
|
|
|
6199
|
+
/**
|
|
6200
|
+
* @summary 在网时长专用接口
|
|
6201
|
+
*
|
|
6202
|
+
* @param request QueryPhoneNumberOnlineTimeRequest
|
|
6203
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6204
|
+
* @return QueryPhoneNumberOnlineTimeResponse
|
|
6205
|
+
*/
|
|
5479
6206
|
async queryPhoneNumberOnlineTimeWithOptions(request: QueryPhoneNumberOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<QueryPhoneNumberOnlineTimeResponse> {
|
|
5480
6207
|
Util.validateModel(request);
|
|
5481
6208
|
let query = { };
|
|
@@ -5520,11 +6247,90 @@ export default class Client extends OpenApi {
|
|
|
5520
6247
|
return $tea.cast<QueryPhoneNumberOnlineTimeResponse>(await this.callApi(params, req, runtime), new QueryPhoneNumberOnlineTimeResponse({}));
|
|
5521
6248
|
}
|
|
5522
6249
|
|
|
6250
|
+
/**
|
|
6251
|
+
* @summary 在网时长专用接口
|
|
6252
|
+
*
|
|
6253
|
+
* @param request QueryPhoneNumberOnlineTimeRequest
|
|
6254
|
+
* @return QueryPhoneNumberOnlineTimeResponse
|
|
6255
|
+
*/
|
|
5523
6256
|
async queryPhoneNumberOnlineTime(request: QueryPhoneNumberOnlineTimeRequest): Promise<QueryPhoneNumberOnlineTimeResponse> {
|
|
5524
6257
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5525
6258
|
return await this.queryPhoneNumberOnlineTimeWithOptions(request, runtime);
|
|
5526
6259
|
}
|
|
5527
6260
|
|
|
6261
|
+
/**
|
|
6262
|
+
* @summary 二次号携号转网号码查询
|
|
6263
|
+
*
|
|
6264
|
+
* @param request QueryPhoneTwiceTelVerifyRequest
|
|
6265
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6266
|
+
* @return QueryPhoneTwiceTelVerifyResponse
|
|
6267
|
+
*/
|
|
6268
|
+
async queryPhoneTwiceTelVerifyWithOptions(request: QueryPhoneTwiceTelVerifyRequest, runtime: $Util.RuntimeOptions): Promise<QueryPhoneTwiceTelVerifyResponse> {
|
|
6269
|
+
Util.validateModel(request);
|
|
6270
|
+
let query = { };
|
|
6271
|
+
if (!Util.isUnset(request.authCode)) {
|
|
6272
|
+
query["AuthCode"] = request.authCode;
|
|
6273
|
+
}
|
|
6274
|
+
|
|
6275
|
+
if (!Util.isUnset(request.inputNumber)) {
|
|
6276
|
+
query["InputNumber"] = request.inputNumber;
|
|
6277
|
+
}
|
|
6278
|
+
|
|
6279
|
+
if (!Util.isUnset(request.mask)) {
|
|
6280
|
+
query["Mask"] = request.mask;
|
|
6281
|
+
}
|
|
6282
|
+
|
|
6283
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
6284
|
+
query["OwnerId"] = request.ownerId;
|
|
6285
|
+
}
|
|
6286
|
+
|
|
6287
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
6288
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
6289
|
+
}
|
|
6290
|
+
|
|
6291
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
6292
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
6293
|
+
}
|
|
6294
|
+
|
|
6295
|
+
if (!Util.isUnset(request.startTime)) {
|
|
6296
|
+
query["StartTime"] = request.startTime;
|
|
6297
|
+
}
|
|
6298
|
+
|
|
6299
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6300
|
+
query: OpenApiUtil.query(query),
|
|
6301
|
+
});
|
|
6302
|
+
let params = new $OpenApi.Params({
|
|
6303
|
+
action: "QueryPhoneTwiceTelVerify",
|
|
6304
|
+
version: "2020-02-17",
|
|
6305
|
+
protocol: "HTTPS",
|
|
6306
|
+
pathname: "/",
|
|
6307
|
+
method: "POST",
|
|
6308
|
+
authType: "AK",
|
|
6309
|
+
style: "RPC",
|
|
6310
|
+
reqBodyType: "formData",
|
|
6311
|
+
bodyType: "json",
|
|
6312
|
+
});
|
|
6313
|
+
return $tea.cast<QueryPhoneTwiceTelVerifyResponse>(await this.callApi(params, req, runtime), new QueryPhoneTwiceTelVerifyResponse({}));
|
|
6314
|
+
}
|
|
6315
|
+
|
|
6316
|
+
/**
|
|
6317
|
+
* @summary 二次号携号转网号码查询
|
|
6318
|
+
*
|
|
6319
|
+
* @param request QueryPhoneTwiceTelVerifyRequest
|
|
6320
|
+
* @return QueryPhoneTwiceTelVerifyResponse
|
|
6321
|
+
*/
|
|
6322
|
+
async queryPhoneTwiceTelVerify(request: QueryPhoneTwiceTelVerifyRequest): Promise<QueryPhoneTwiceTelVerifyResponse> {
|
|
6323
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6324
|
+
return await this.queryPhoneTwiceTelVerifyWithOptions(request, runtime);
|
|
6325
|
+
}
|
|
6326
|
+
|
|
6327
|
+
/**
|
|
6328
|
+
* @summary Queries tag application rules.
|
|
6329
|
+
*
|
|
6330
|
+
* @param request QueryTagApplyRuleRequest
|
|
6331
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6332
|
+
* @return QueryTagApplyRuleResponse
|
|
6333
|
+
*/
|
|
5528
6334
|
async queryTagApplyRuleWithOptions(request: QueryTagApplyRuleRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagApplyRuleResponse> {
|
|
5529
6335
|
Util.validateModel(request);
|
|
5530
6336
|
let query = { };
|
|
@@ -5561,11 +6367,24 @@ export default class Client extends OpenApi {
|
|
|
5561
6367
|
return $tea.cast<QueryTagApplyRuleResponse>(await this.callApi(params, req, runtime), new QueryTagApplyRuleResponse({}));
|
|
5562
6368
|
}
|
|
5563
6369
|
|
|
6370
|
+
/**
|
|
6371
|
+
* @summary Queries tag application rules.
|
|
6372
|
+
*
|
|
6373
|
+
* @param request QueryTagApplyRuleRequest
|
|
6374
|
+
* @return QueryTagApplyRuleResponse
|
|
6375
|
+
*/
|
|
5564
6376
|
async queryTagApplyRule(request: QueryTagApplyRuleRequest): Promise<QueryTagApplyRuleResponse> {
|
|
5565
6377
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5566
6378
|
return await this.queryTagApplyRuleWithOptions(request, runtime);
|
|
5567
6379
|
}
|
|
5568
6380
|
|
|
6381
|
+
/**
|
|
6382
|
+
* @summary Queries information about tags.
|
|
6383
|
+
*
|
|
6384
|
+
* @param request QueryTagInfoBySelectionRequest
|
|
6385
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6386
|
+
* @return QueryTagInfoBySelectionResponse
|
|
6387
|
+
*/
|
|
5569
6388
|
async queryTagInfoBySelectionWithOptions(request: QueryTagInfoBySelectionRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagInfoBySelectionResponse> {
|
|
5570
6389
|
Util.validateModel(request);
|
|
5571
6390
|
let query = { };
|
|
@@ -5610,11 +6429,24 @@ export default class Client extends OpenApi {
|
|
|
5610
6429
|
return $tea.cast<QueryTagInfoBySelectionResponse>(await this.callApi(params, req, runtime), new QueryTagInfoBySelectionResponse({}));
|
|
5611
6430
|
}
|
|
5612
6431
|
|
|
6432
|
+
/**
|
|
6433
|
+
* @summary Queries information about tags.
|
|
6434
|
+
*
|
|
6435
|
+
* @param request QueryTagInfoBySelectionRequest
|
|
6436
|
+
* @return QueryTagInfoBySelectionResponse
|
|
6437
|
+
*/
|
|
5613
6438
|
async queryTagInfoBySelection(request: QueryTagInfoBySelectionRequest): Promise<QueryTagInfoBySelectionResponse> {
|
|
5614
6439
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5615
6440
|
return await this.queryTagInfoBySelectionWithOptions(request, runtime);
|
|
5616
6441
|
}
|
|
5617
6442
|
|
|
6443
|
+
/**
|
|
6444
|
+
* @summary Queries a list of tags by page.
|
|
6445
|
+
*
|
|
6446
|
+
* @param request QueryTagListPageRequest
|
|
6447
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6448
|
+
* @return QueryTagListPageResponse
|
|
6449
|
+
*/
|
|
5618
6450
|
async queryTagListPageWithOptions(request: QueryTagListPageRequest, runtime: $Util.RuntimeOptions): Promise<QueryTagListPageResponse> {
|
|
5619
6451
|
Util.validateModel(request);
|
|
5620
6452
|
let query = { };
|
|
@@ -5655,11 +6487,24 @@ export default class Client extends OpenApi {
|
|
|
5655
6487
|
return $tea.cast<QueryTagListPageResponse>(await this.callApi(params, req, runtime), new QueryTagListPageResponse({}));
|
|
5656
6488
|
}
|
|
5657
6489
|
|
|
6490
|
+
/**
|
|
6491
|
+
* @summary Queries a list of tags by page.
|
|
6492
|
+
*
|
|
6493
|
+
* @param request QueryTagListPageRequest
|
|
6494
|
+
* @return QueryTagListPageResponse
|
|
6495
|
+
*/
|
|
5658
6496
|
async queryTagListPage(request: QueryTagListPageRequest): Promise<QueryTagListPageResponse> {
|
|
5659
6497
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5660
6498
|
return await this.queryTagListPageWithOptions(request, runtime);
|
|
5661
6499
|
}
|
|
5662
6500
|
|
|
6501
|
+
/**
|
|
6502
|
+
* @summary Queries the usage statistics based on tag IDs.
|
|
6503
|
+
*
|
|
6504
|
+
* @param request QueryUsageStatisticsByTagIdRequest
|
|
6505
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6506
|
+
* @return QueryUsageStatisticsByTagIdResponse
|
|
6507
|
+
*/
|
|
5663
6508
|
async queryUsageStatisticsByTagIdWithOptions(request: QueryUsageStatisticsByTagIdRequest, runtime: $Util.RuntimeOptions): Promise<QueryUsageStatisticsByTagIdResponse> {
|
|
5664
6509
|
Util.validateModel(request);
|
|
5665
6510
|
let query = { };
|
|
@@ -5712,21 +6557,29 @@ export default class Client extends OpenApi {
|
|
|
5712
6557
|
return $tea.cast<QueryUsageStatisticsByTagIdResponse>(await this.callApi(params, req, runtime), new QueryUsageStatisticsByTagIdResponse({}));
|
|
5713
6558
|
}
|
|
5714
6559
|
|
|
6560
|
+
/**
|
|
6561
|
+
* @summary Queries the usage statistics based on tag IDs.
|
|
6562
|
+
*
|
|
6563
|
+
* @param request QueryUsageStatisticsByTagIdRequest
|
|
6564
|
+
* @return QueryUsageStatisticsByTagIdResponse
|
|
6565
|
+
*/
|
|
5715
6566
|
async queryUsageStatisticsByTagId(request: QueryUsageStatisticsByTagIdRequest): Promise<QueryUsageStatisticsByTagIdResponse> {
|
|
5716
6567
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5717
6568
|
return await this.queryUsageStatisticsByTagIdWithOptions(request, runtime);
|
|
5718
6569
|
}
|
|
5719
6570
|
|
|
5720
6571
|
/**
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
|
|
5729
|
-
|
|
6572
|
+
* @summary Verifies whether the name, phone number, and ID card number entered by a user belong to the same user.
|
|
6573
|
+
*
|
|
6574
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
6575
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6576
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
6577
|
+
* ### [](#qps)QPS limits
|
|
6578
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6579
|
+
*
|
|
6580
|
+
* @param request ThreeElementsVerificationRequest
|
|
6581
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6582
|
+
* @return ThreeElementsVerificationResponse
|
|
5730
6583
|
*/
|
|
5731
6584
|
async threeElementsVerificationWithOptions(request: ThreeElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<ThreeElementsVerificationResponse> {
|
|
5732
6585
|
Util.validateModel(request);
|
|
@@ -5781,14 +6634,16 @@ export default class Client extends OpenApi {
|
|
|
5781
6634
|
}
|
|
5782
6635
|
|
|
5783
6636
|
/**
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
|
|
6637
|
+
* @summary Verifies whether the name, phone number, and ID card number entered by a user belong to the same user.
|
|
6638
|
+
*
|
|
6639
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
6640
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6641
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
6642
|
+
* ### [](#qps)QPS limits
|
|
6643
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6644
|
+
*
|
|
6645
|
+
* @param request ThreeElementsVerificationRequest
|
|
6646
|
+
* @return ThreeElementsVerificationResponse
|
|
5792
6647
|
*/
|
|
5793
6648
|
async threeElementsVerification(request: ThreeElementsVerificationRequest): Promise<ThreeElementsVerificationResponse> {
|
|
5794
6649
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -5796,15 +6651,17 @@ export default class Client extends OpenApi {
|
|
|
5796
6651
|
}
|
|
5797
6652
|
|
|
5798
6653
|
/**
|
|
5799
|
-
|
|
5800
|
-
|
|
5801
|
-
|
|
5802
|
-
|
|
5803
|
-
|
|
5804
|
-
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
6654
|
+
* @summary Verifies whether the name and phone number entered by a user belong to the same user.
|
|
6655
|
+
*
|
|
6656
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
6657
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6658
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
6659
|
+
* ### [](#qps)QPS limits
|
|
6660
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6661
|
+
*
|
|
6662
|
+
* @param request TwoElementsVerificationRequest
|
|
6663
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6664
|
+
* @return TwoElementsVerificationResponse
|
|
5808
6665
|
*/
|
|
5809
6666
|
async twoElementsVerificationWithOptions(request: TwoElementsVerificationRequest, runtime: $Util.RuntimeOptions): Promise<TwoElementsVerificationResponse> {
|
|
5810
6667
|
Util.validateModel(request);
|
|
@@ -5855,20 +6712,173 @@ export default class Client extends OpenApi {
|
|
|
5855
6712
|
}
|
|
5856
6713
|
|
|
5857
6714
|
/**
|
|
5858
|
-
|
|
5859
|
-
|
|
5860
|
-
|
|
5861
|
-
|
|
5862
|
-
|
|
5863
|
-
|
|
5864
|
-
|
|
5865
|
-
|
|
6715
|
+
* @summary Verifies whether the name and phone number entered by a user belong to the same user.
|
|
6716
|
+
*
|
|
6717
|
+
* @description * Before you call this operation, make sure that you are familiar with the [billing](https://help.aliyun.com/document_detail/154751.html) of Cell Phone Number Service.
|
|
6718
|
+
* * Before you call this operation, perform the following operations: Log on to the Cell Phone Number Service console. On the [Labels](https://dytns.console.aliyun.com/analysis/square) page, find the label that you want to use, click **Activate Now**, enter the required information, and then submit your application. After your application is approved, you can use the label.
|
|
6719
|
+
* * You are charged only if the value of Code is OK and the value of IsConsistent is not 2.
|
|
6720
|
+
* ### [](#qps)QPS limits
|
|
6721
|
+
* You can call this operation up to 200 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
6722
|
+
*
|
|
6723
|
+
* @param request TwoElementsVerificationRequest
|
|
6724
|
+
* @return TwoElementsVerificationResponse
|
|
5866
6725
|
*/
|
|
5867
6726
|
async twoElementsVerification(request: TwoElementsVerificationRequest): Promise<TwoElementsVerificationResponse> {
|
|
5868
6727
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5869
6728
|
return await this.twoElementsVerificationWithOptions(request, runtime);
|
|
5870
6729
|
}
|
|
5871
6730
|
|
|
6731
|
+
/**
|
|
6732
|
+
* @summary UAID采集
|
|
6733
|
+
*
|
|
6734
|
+
* @param request UAIDCollectionRequest
|
|
6735
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6736
|
+
* @return UAIDCollectionResponse
|
|
6737
|
+
*/
|
|
6738
|
+
async uAIDCollectionWithOptions(request: UAIDCollectionRequest, runtime: $Util.RuntimeOptions): Promise<UAIDCollectionResponse> {
|
|
6739
|
+
Util.validateModel(request);
|
|
6740
|
+
let query = { };
|
|
6741
|
+
if (!Util.isUnset(request.authCode)) {
|
|
6742
|
+
query["AuthCode"] = request.authCode;
|
|
6743
|
+
}
|
|
6744
|
+
|
|
6745
|
+
if (!Util.isUnset(request.carrier)) {
|
|
6746
|
+
query["Carrier"] = request.carrier;
|
|
6747
|
+
}
|
|
6748
|
+
|
|
6749
|
+
if (!Util.isUnset(request.ip)) {
|
|
6750
|
+
query["Ip"] = request.ip;
|
|
6751
|
+
}
|
|
6752
|
+
|
|
6753
|
+
if (!Util.isUnset(request.outId)) {
|
|
6754
|
+
query["OutId"] = request.outId;
|
|
6755
|
+
}
|
|
6756
|
+
|
|
6757
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
6758
|
+
query["OwnerId"] = request.ownerId;
|
|
6759
|
+
}
|
|
6760
|
+
|
|
6761
|
+
if (!Util.isUnset(request.province)) {
|
|
6762
|
+
query["Province"] = request.province;
|
|
6763
|
+
}
|
|
6764
|
+
|
|
6765
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
6766
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
6767
|
+
}
|
|
6768
|
+
|
|
6769
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
6770
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
6771
|
+
}
|
|
6772
|
+
|
|
6773
|
+
if (!Util.isUnset(request.token)) {
|
|
6774
|
+
query["Token"] = request.token;
|
|
6775
|
+
}
|
|
6776
|
+
|
|
6777
|
+
if (!Util.isUnset(request.userGrantId)) {
|
|
6778
|
+
query["UserGrantId"] = request.userGrantId;
|
|
6779
|
+
}
|
|
6780
|
+
|
|
6781
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6782
|
+
query: OpenApiUtil.query(query),
|
|
6783
|
+
});
|
|
6784
|
+
let params = new $OpenApi.Params({
|
|
6785
|
+
action: "UAIDCollection",
|
|
6786
|
+
version: "2020-02-17",
|
|
6787
|
+
protocol: "HTTPS",
|
|
6788
|
+
pathname: "/",
|
|
6789
|
+
method: "POST",
|
|
6790
|
+
authType: "AK",
|
|
6791
|
+
style: "RPC",
|
|
6792
|
+
reqBodyType: "formData",
|
|
6793
|
+
bodyType: "json",
|
|
6794
|
+
});
|
|
6795
|
+
return $tea.cast<UAIDCollectionResponse>(await this.callApi(params, req, runtime), new UAIDCollectionResponse({}));
|
|
6796
|
+
}
|
|
6797
|
+
|
|
6798
|
+
/**
|
|
6799
|
+
* @summary UAID采集
|
|
6800
|
+
*
|
|
6801
|
+
* @param request UAIDCollectionRequest
|
|
6802
|
+
* @return UAIDCollectionResponse
|
|
6803
|
+
*/
|
|
6804
|
+
async uAIDCollection(request: UAIDCollectionRequest): Promise<UAIDCollectionResponse> {
|
|
6805
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6806
|
+
return await this.uAIDCollectionWithOptions(request, runtime);
|
|
6807
|
+
}
|
|
6808
|
+
|
|
6809
|
+
/**
|
|
6810
|
+
* @summary uaid号码转换服务
|
|
6811
|
+
*
|
|
6812
|
+
* @param request UAIDConversionRequest
|
|
6813
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6814
|
+
* @return UAIDConversionResponse
|
|
6815
|
+
*/
|
|
6816
|
+
async uAIDConversionWithOptions(request: UAIDConversionRequest, runtime: $Util.RuntimeOptions): Promise<UAIDConversionResponse> {
|
|
6817
|
+
Util.validateModel(request);
|
|
6818
|
+
let query = { };
|
|
6819
|
+
if (!Util.isUnset(request.authCode)) {
|
|
6820
|
+
query["AuthCode"] = request.authCode;
|
|
6821
|
+
}
|
|
6822
|
+
|
|
6823
|
+
if (!Util.isUnset(request.carrier)) {
|
|
6824
|
+
query["Carrier"] = request.carrier;
|
|
6825
|
+
}
|
|
6826
|
+
|
|
6827
|
+
if (!Util.isUnset(request.outId)) {
|
|
6828
|
+
query["OutId"] = request.outId;
|
|
6829
|
+
}
|
|
6830
|
+
|
|
6831
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
6832
|
+
query["OwnerId"] = request.ownerId;
|
|
6833
|
+
}
|
|
6834
|
+
|
|
6835
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
6836
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
6837
|
+
}
|
|
6838
|
+
|
|
6839
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
6840
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
6841
|
+
}
|
|
6842
|
+
|
|
6843
|
+
if (!Util.isUnset(request.uaidList)) {
|
|
6844
|
+
query["UaidList"] = request.uaidList;
|
|
6845
|
+
}
|
|
6846
|
+
|
|
6847
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6848
|
+
query: OpenApiUtil.query(query),
|
|
6849
|
+
});
|
|
6850
|
+
let params = new $OpenApi.Params({
|
|
6851
|
+
action: "UAIDConversion",
|
|
6852
|
+
version: "2020-02-17",
|
|
6853
|
+
protocol: "HTTPS",
|
|
6854
|
+
pathname: "/",
|
|
6855
|
+
method: "POST",
|
|
6856
|
+
authType: "AK",
|
|
6857
|
+
style: "RPC",
|
|
6858
|
+
reqBodyType: "formData",
|
|
6859
|
+
bodyType: "json",
|
|
6860
|
+
});
|
|
6861
|
+
return $tea.cast<UAIDConversionResponse>(await this.callApi(params, req, runtime), new UAIDConversionResponse({}));
|
|
6862
|
+
}
|
|
6863
|
+
|
|
6864
|
+
/**
|
|
6865
|
+
* @summary uaid号码转换服务
|
|
6866
|
+
*
|
|
6867
|
+
* @param request UAIDConversionRequest
|
|
6868
|
+
* @return UAIDConversionResponse
|
|
6869
|
+
*/
|
|
6870
|
+
async uAIDConversion(request: UAIDConversionRequest): Promise<UAIDConversionResponse> {
|
|
6871
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6872
|
+
return await this.uAIDConversionWithOptions(request, runtime);
|
|
6873
|
+
}
|
|
6874
|
+
|
|
6875
|
+
/**
|
|
6876
|
+
* @summary 获取UAID
|
|
6877
|
+
*
|
|
6878
|
+
* @param request UAIDVerificationRequest
|
|
6879
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6880
|
+
* @return UAIDVerificationResponse
|
|
6881
|
+
*/
|
|
5872
6882
|
async uAIDVerificationWithOptions(request: UAIDVerificationRequest, runtime: $Util.RuntimeOptions): Promise<UAIDVerificationResponse> {
|
|
5873
6883
|
Util.validateModel(request);
|
|
5874
6884
|
let query = { };
|
|
@@ -5929,6 +6939,12 @@ export default class Client extends OpenApi {
|
|
|
5929
6939
|
return $tea.cast<UAIDVerificationResponse>(await this.callApi(params, req, runtime), new UAIDVerificationResponse({}));
|
|
5930
6940
|
}
|
|
5931
6941
|
|
|
6942
|
+
/**
|
|
6943
|
+
* @summary 获取UAID
|
|
6944
|
+
*
|
|
6945
|
+
* @param request UAIDVerificationRequest
|
|
6946
|
+
* @return UAIDVerificationResponse
|
|
6947
|
+
*/
|
|
5932
6948
|
async uAIDVerification(request: UAIDVerificationRequest): Promise<UAIDVerificationResponse> {
|
|
5933
6949
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5934
6950
|
return await this.uAIDVerificationWithOptions(request, runtime);
|