@forteplatforms/sdk 1.0.250 → 1.0.253
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.
|
@@ -67,6 +67,7 @@ export interface ActivateMfaMethodOperationRequest {
|
|
|
67
67
|
export interface CancelMySubscriptionRequest {
|
|
68
68
|
projectId: string;
|
|
69
69
|
subscriptionId: string;
|
|
70
|
+
authorization?: string;
|
|
70
71
|
}
|
|
71
72
|
export interface ChangeMyPasswordRequest {
|
|
72
73
|
projectId: string;
|
|
@@ -104,23 +105,29 @@ export interface CreateUserInviteOperationRequest {
|
|
|
104
105
|
export interface DeleteContactMethodRequest {
|
|
105
106
|
projectId: string;
|
|
106
107
|
contactMethodId: string;
|
|
108
|
+
authorization?: string;
|
|
107
109
|
}
|
|
108
110
|
export interface DeleteMfaMethodRequest {
|
|
109
111
|
projectId: string;
|
|
110
112
|
mfaMethodId: string;
|
|
113
|
+
authorization?: string;
|
|
111
114
|
}
|
|
112
115
|
export interface GenerateBackupCodesRequest {
|
|
113
116
|
projectId: string;
|
|
117
|
+
authorization?: string;
|
|
114
118
|
}
|
|
115
119
|
export interface GetAccountRequest {
|
|
116
120
|
projectId: string;
|
|
121
|
+
authorization?: string;
|
|
117
122
|
}
|
|
118
123
|
export interface GetBackupCodeStatusRequest {
|
|
119
124
|
projectId: string;
|
|
125
|
+
authorization?: string;
|
|
120
126
|
}
|
|
121
127
|
export interface GetMySubscriptionRequest {
|
|
122
128
|
projectId: string;
|
|
123
129
|
subscriptionId: string;
|
|
130
|
+
authorization?: string;
|
|
124
131
|
}
|
|
125
132
|
export interface GoogleAuthLoginCallbackRequest {
|
|
126
133
|
projectId: string;
|
|
@@ -130,9 +137,11 @@ export interface GoogleAuthLoginCallbackRequest {
|
|
|
130
137
|
}
|
|
131
138
|
export interface ListMfaMethodsRequest {
|
|
132
139
|
projectId: string;
|
|
140
|
+
authorization?: string;
|
|
133
141
|
}
|
|
134
142
|
export interface ListMyPaymentsRequest {
|
|
135
143
|
projectId: string;
|
|
144
|
+
authorization?: string;
|
|
136
145
|
metadataKey?: string;
|
|
137
146
|
metadataValue?: string;
|
|
138
147
|
minTime?: Date;
|
|
@@ -141,11 +150,13 @@ export interface ListMyPaymentsRequest {
|
|
|
141
150
|
}
|
|
142
151
|
export interface ListMySubscriptionsRequest {
|
|
143
152
|
projectId: string;
|
|
153
|
+
authorization?: string;
|
|
144
154
|
page?: number;
|
|
145
155
|
pageSize?: number;
|
|
146
156
|
}
|
|
147
157
|
export interface ListUserInvitesRequest {
|
|
148
158
|
projectId: string;
|
|
159
|
+
authorization?: string;
|
|
149
160
|
}
|
|
150
161
|
export interface LogoutRequest {
|
|
151
162
|
projectId: string;
|
|
@@ -185,6 +196,7 @@ export interface RequestPasswordResetOperationRequest {
|
|
|
185
196
|
export interface ResendContactMethodVerificationCodeRequest {
|
|
186
197
|
projectId: string;
|
|
187
198
|
contactMethodId: string;
|
|
199
|
+
authorization?: string;
|
|
188
200
|
}
|
|
189
201
|
export interface ResendLoginOtpRequest {
|
|
190
202
|
projectId: string;
|
|
@@ -193,6 +205,7 @@ export interface ResendLoginOtpRequest {
|
|
|
193
205
|
export interface RevokeUserInviteRequest {
|
|
194
206
|
projectId: string;
|
|
195
207
|
inviteId: string;
|
|
208
|
+
authorization?: string;
|
|
196
209
|
}
|
|
197
210
|
export interface SendMfaChallengeRequest {
|
|
198
211
|
projectId: string;
|
|
@@ -217,6 +230,7 @@ export interface UsersCreatePaymentRequest {
|
|
|
217
230
|
}
|
|
218
231
|
export interface UsersCreatePaymentMethodRequest {
|
|
219
232
|
projectId: string;
|
|
233
|
+
authorization?: string;
|
|
220
234
|
}
|
|
221
235
|
export interface UsersCreatePaymentPreviewRequest {
|
|
222
236
|
projectId: string;
|
|
@@ -236,34 +250,42 @@ export interface UsersCreateSubscriptionPreviewRequest {
|
|
|
236
250
|
export interface UsersDeleteContentRequest {
|
|
237
251
|
projectId: string;
|
|
238
252
|
contentId: string;
|
|
253
|
+
authorization?: string;
|
|
239
254
|
}
|
|
240
255
|
export interface UsersDeletePaymentMethodRequest {
|
|
241
256
|
projectId: string;
|
|
242
257
|
paymentMethodId: string;
|
|
258
|
+
authorization?: string;
|
|
243
259
|
}
|
|
244
260
|
export interface UsersFinalizeContentRequest {
|
|
245
261
|
projectId: string;
|
|
246
262
|
pendingContentId: string;
|
|
263
|
+
authorization?: string;
|
|
247
264
|
}
|
|
248
265
|
export interface UsersGetContentRequest {
|
|
249
266
|
projectId: string;
|
|
250
267
|
contentId: string;
|
|
268
|
+
authorization?: string;
|
|
251
269
|
}
|
|
252
270
|
export interface UsersGetContentDownloadLinkRequest {
|
|
253
271
|
projectId: string;
|
|
254
272
|
contentId: string;
|
|
273
|
+
authorization?: string;
|
|
255
274
|
}
|
|
256
275
|
export interface UsersGetPaymentMethodRequest {
|
|
257
276
|
projectId: string;
|
|
258
277
|
paymentMethodId: string;
|
|
278
|
+
authorization?: string;
|
|
259
279
|
}
|
|
260
280
|
export interface UsersListContentRequest {
|
|
261
281
|
projectId: string;
|
|
282
|
+
authorization?: string;
|
|
262
283
|
page?: number;
|
|
263
284
|
pageSize?: number;
|
|
264
285
|
}
|
|
265
286
|
export interface UsersListPaymentMethodsRequest {
|
|
266
287
|
projectId: string;
|
|
288
|
+
authorization?: string;
|
|
267
289
|
}
|
|
268
290
|
export interface UsersUpdateContentOwnerRequest {
|
|
269
291
|
projectId: string;
|
|
@@ -287,6 +309,7 @@ export interface VerifyContactMethodRequest {
|
|
|
287
309
|
projectId: string;
|
|
288
310
|
contactMethodId: string;
|
|
289
311
|
verificationCode: string;
|
|
312
|
+
authorization?: string;
|
|
290
313
|
}
|
|
291
314
|
export interface VerifyMfaRequest {
|
|
292
315
|
projectId: string;
|
|
@@ -204,6 +204,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
204
204
|
}
|
|
205
205
|
queryParameters = {};
|
|
206
206
|
headerParameters = {};
|
|
207
|
+
if (requestParameters['authorization'] != null) {
|
|
208
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
209
|
+
}
|
|
207
210
|
urlPath = "/api/v1/{projectId}/users/me/subscriptions/{subscriptionId}";
|
|
208
211
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
209
212
|
urlPath = urlPath.replace('{subscriptionId}', encodeURIComponent(String(requestParameters['subscriptionId'])));
|
|
@@ -713,6 +716,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
713
716
|
}
|
|
714
717
|
queryParameters = {};
|
|
715
718
|
headerParameters = {};
|
|
719
|
+
if (requestParameters['authorization'] != null) {
|
|
720
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
721
|
+
}
|
|
716
722
|
urlPath = "/api/v1/{projectId}/users/me/contact-methods/{contactMethodId}";
|
|
717
723
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
718
724
|
urlPath = urlPath.replace('{contactMethodId}', encodeURIComponent(String(requestParameters['contactMethodId'])));
|
|
@@ -772,6 +778,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
772
778
|
}
|
|
773
779
|
queryParameters = {};
|
|
774
780
|
headerParameters = {};
|
|
781
|
+
if (requestParameters['authorization'] != null) {
|
|
782
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
783
|
+
}
|
|
775
784
|
urlPath = "/api/v1/{projectId}/users/me/mfa/methods/{mfaMethodId}";
|
|
776
785
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
777
786
|
urlPath = urlPath.replace('{mfaMethodId}', encodeURIComponent(String(requestParameters['mfaMethodId'])));
|
|
@@ -828,6 +837,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
828
837
|
}
|
|
829
838
|
queryParameters = {};
|
|
830
839
|
headerParameters = {};
|
|
840
|
+
if (requestParameters['authorization'] != null) {
|
|
841
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
842
|
+
}
|
|
831
843
|
urlPath = "/api/v1/{projectId}/users/me/mfa/backup-codes";
|
|
832
844
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
833
845
|
return [2 /*return*/, {
|
|
@@ -885,6 +897,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
885
897
|
}
|
|
886
898
|
queryParameters = {};
|
|
887
899
|
headerParameters = {};
|
|
900
|
+
if (requestParameters['authorization'] != null) {
|
|
901
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
902
|
+
}
|
|
888
903
|
urlPath = "/api/v1/{projectId}/users/me";
|
|
889
904
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
890
905
|
return [2 /*return*/, {
|
|
@@ -942,6 +957,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
942
957
|
}
|
|
943
958
|
queryParameters = {};
|
|
944
959
|
headerParameters = {};
|
|
960
|
+
if (requestParameters['authorization'] != null) {
|
|
961
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
962
|
+
}
|
|
945
963
|
urlPath = "/api/v1/{projectId}/users/me/mfa/backup-codes";
|
|
946
964
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
947
965
|
return [2 /*return*/, {
|
|
@@ -1002,6 +1020,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
1002
1020
|
}
|
|
1003
1021
|
queryParameters = {};
|
|
1004
1022
|
headerParameters = {};
|
|
1023
|
+
if (requestParameters['authorization'] != null) {
|
|
1024
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
1025
|
+
}
|
|
1005
1026
|
urlPath = "/api/v1/{projectId}/users/me/subscriptions/{subscriptionId}";
|
|
1006
1027
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
1007
1028
|
urlPath = urlPath.replace('{subscriptionId}', encodeURIComponent(String(requestParameters['subscriptionId'])));
|
|
@@ -1144,6 +1165,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
1144
1165
|
}
|
|
1145
1166
|
queryParameters = {};
|
|
1146
1167
|
headerParameters = {};
|
|
1168
|
+
if (requestParameters['authorization'] != null) {
|
|
1169
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
1170
|
+
}
|
|
1147
1171
|
urlPath = "/api/v1/{projectId}/users/me/mfa/methods";
|
|
1148
1172
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
1149
1173
|
return [2 /*return*/, {
|
|
@@ -1216,6 +1240,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
1216
1240
|
queryParameters['nextToken'] = requestParameters['nextToken'];
|
|
1217
1241
|
}
|
|
1218
1242
|
headerParameters = {};
|
|
1243
|
+
if (requestParameters['authorization'] != null) {
|
|
1244
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
1245
|
+
}
|
|
1219
1246
|
urlPath = "/api/v1/{projectId}/users/me/payments";
|
|
1220
1247
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
1221
1248
|
return [2 /*return*/, {
|
|
@@ -1279,6 +1306,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
1279
1306
|
queryParameters['pageSize'] = requestParameters['pageSize'];
|
|
1280
1307
|
}
|
|
1281
1308
|
headerParameters = {};
|
|
1309
|
+
if (requestParameters['authorization'] != null) {
|
|
1310
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
1311
|
+
}
|
|
1282
1312
|
urlPath = "/api/v1/{projectId}/users/me/subscriptions";
|
|
1283
1313
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
1284
1314
|
return [2 /*return*/, {
|
|
@@ -1336,6 +1366,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
1336
1366
|
}
|
|
1337
1367
|
queryParameters = {};
|
|
1338
1368
|
headerParameters = {};
|
|
1369
|
+
if (requestParameters['authorization'] != null) {
|
|
1370
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
1371
|
+
}
|
|
1339
1372
|
urlPath = "/api/v1/{projectId}/users/me/invites";
|
|
1340
1373
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
1341
1374
|
return [2 /*return*/, {
|
|
@@ -1837,6 +1870,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
1837
1870
|
}
|
|
1838
1871
|
queryParameters = {};
|
|
1839
1872
|
headerParameters = {};
|
|
1873
|
+
if (requestParameters['authorization'] != null) {
|
|
1874
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
1875
|
+
}
|
|
1840
1876
|
urlPath = "/api/v1/{projectId}/users/me/contact-methods/{contactMethodId}/resend-verification-code";
|
|
1841
1877
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
1842
1878
|
urlPath = urlPath.replace('{contactMethodId}', encodeURIComponent(String(requestParameters['contactMethodId'])));
|
|
@@ -1959,6 +1995,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
1959
1995
|
}
|
|
1960
1996
|
queryParameters = {};
|
|
1961
1997
|
headerParameters = {};
|
|
1998
|
+
if (requestParameters['authorization'] != null) {
|
|
1999
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2000
|
+
}
|
|
1962
2001
|
urlPath = "/api/v1/{projectId}/users/me/invites/{inviteId}";
|
|
1963
2002
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
1964
2003
|
urlPath = urlPath.replace('{inviteId}', encodeURIComponent(String(requestParameters['inviteId'])));
|
|
@@ -2279,6 +2318,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2279
2318
|
}
|
|
2280
2319
|
queryParameters = {};
|
|
2281
2320
|
headerParameters = {};
|
|
2321
|
+
if (requestParameters['authorization'] != null) {
|
|
2322
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2323
|
+
}
|
|
2282
2324
|
urlPath = "/api/v1/{projectId}/users/me/payment-methods";
|
|
2283
2325
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2284
2326
|
return [2 /*return*/, {
|
|
@@ -2534,6 +2576,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2534
2576
|
}
|
|
2535
2577
|
queryParameters = {};
|
|
2536
2578
|
headerParameters = {};
|
|
2579
|
+
if (requestParameters['authorization'] != null) {
|
|
2580
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2581
|
+
}
|
|
2537
2582
|
urlPath = "/api/v1/{projectId}/users/me/content/{contentId}";
|
|
2538
2583
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2539
2584
|
urlPath = urlPath.replace('{contentId}', encodeURIComponent(String(requestParameters['contentId'])));
|
|
@@ -2593,6 +2638,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2593
2638
|
}
|
|
2594
2639
|
queryParameters = {};
|
|
2595
2640
|
headerParameters = {};
|
|
2641
|
+
if (requestParameters['authorization'] != null) {
|
|
2642
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2643
|
+
}
|
|
2596
2644
|
urlPath = "/api/v1/{projectId}/users/me/payment-methods/{paymentMethodId}";
|
|
2597
2645
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2598
2646
|
urlPath = urlPath.replace('{paymentMethodId}', encodeURIComponent(String(requestParameters['paymentMethodId'])));
|
|
@@ -2652,6 +2700,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2652
2700
|
}
|
|
2653
2701
|
queryParameters = {};
|
|
2654
2702
|
headerParameters = {};
|
|
2703
|
+
if (requestParameters['authorization'] != null) {
|
|
2704
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2705
|
+
}
|
|
2655
2706
|
urlPath = "/api/v1/{projectId}/users/me/content/{pendingContentId}";
|
|
2656
2707
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2657
2708
|
urlPath = urlPath.replace('{pendingContentId}', encodeURIComponent(String(requestParameters['pendingContentId'])));
|
|
@@ -2713,6 +2764,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2713
2764
|
}
|
|
2714
2765
|
queryParameters = {};
|
|
2715
2766
|
headerParameters = {};
|
|
2767
|
+
if (requestParameters['authorization'] != null) {
|
|
2768
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2769
|
+
}
|
|
2716
2770
|
urlPath = "/api/v1/{projectId}/users/me/content/{contentId}";
|
|
2717
2771
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2718
2772
|
urlPath = urlPath.replace('{contentId}', encodeURIComponent(String(requestParameters['contentId'])));
|
|
@@ -2774,6 +2828,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2774
2828
|
}
|
|
2775
2829
|
queryParameters = {};
|
|
2776
2830
|
headerParameters = {};
|
|
2831
|
+
if (requestParameters['authorization'] != null) {
|
|
2832
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2833
|
+
}
|
|
2777
2834
|
urlPath = "/api/v1/{projectId}/users/me/content/{contentId}/download-link";
|
|
2778
2835
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2779
2836
|
urlPath = urlPath.replace('{contentId}', encodeURIComponent(String(requestParameters['contentId'])));
|
|
@@ -2835,6 +2892,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2835
2892
|
}
|
|
2836
2893
|
queryParameters = {};
|
|
2837
2894
|
headerParameters = {};
|
|
2895
|
+
if (requestParameters['authorization'] != null) {
|
|
2896
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2897
|
+
}
|
|
2838
2898
|
urlPath = "/api/v1/{projectId}/users/me/payment-methods/{paymentMethodId}";
|
|
2839
2899
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2840
2900
|
urlPath = urlPath.replace('{paymentMethodId}', encodeURIComponent(String(requestParameters['paymentMethodId'])));
|
|
@@ -2899,6 +2959,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2899
2959
|
queryParameters['pageSize'] = requestParameters['pageSize'];
|
|
2900
2960
|
}
|
|
2901
2961
|
headerParameters = {};
|
|
2962
|
+
if (requestParameters['authorization'] != null) {
|
|
2963
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
2964
|
+
}
|
|
2902
2965
|
urlPath = "/api/v1/{projectId}/users/me/content";
|
|
2903
2966
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2904
2967
|
return [2 /*return*/, {
|
|
@@ -2956,6 +3019,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
2956
3019
|
}
|
|
2957
3020
|
queryParameters = {};
|
|
2958
3021
|
headerParameters = {};
|
|
3022
|
+
if (requestParameters['authorization'] != null) {
|
|
3023
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
3024
|
+
}
|
|
2959
3025
|
urlPath = "/api/v1/{projectId}/users/me/payment-methods";
|
|
2960
3026
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
2961
3027
|
return [2 /*return*/, {
|
|
@@ -3229,6 +3295,9 @@ var UsersServerApi = /** @class */ (function (_super) {
|
|
|
3229
3295
|
queryParameters['verificationCode'] = requestParameters['verificationCode'];
|
|
3230
3296
|
}
|
|
3231
3297
|
headerParameters = {};
|
|
3298
|
+
if (requestParameters['authorization'] != null) {
|
|
3299
|
+
headerParameters['Authorization'] = String(requestParameters['authorization']);
|
|
3300
|
+
}
|
|
3232
3301
|
urlPath = "/api/v1/{projectId}/users/me/contact-methods/{contactMethodId}/verification";
|
|
3233
3302
|
urlPath = urlPath.replace('{projectId}', encodeURIComponent(String(requestParameters['projectId'])));
|
|
3234
3303
|
urlPath = urlPath.replace('{contactMethodId}', encodeURIComponent(String(requestParameters['contactMethodId'])));
|