yellowgrid-api-ts 3.2.253 → 3.2.255
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/.openapi-generator/FILES +45 -1
- package/README.md +109 -2
- package/api.ts +4924 -86
- package/dist/api.d.ts +2454 -62
- package/dist/api.js +5269 -128
- package/docs/BaseService.md +36 -0
- package/docs/BillingApi.md +3517 -25
- package/docs/Bundle.md +34 -0
- package/docs/BundleCustomer.md +34 -0
- package/docs/CallTariff.md +34 -0
- package/docs/CallTariffPlan.md +36 -0
- package/docs/CallTariffResponse.md +26 -0
- package/docs/Cdr.md +112 -0
- package/docs/ConnectionRequest.md +36 -0
- package/docs/ConnectionType.md +28 -0
- package/docs/ContactDetail.md +58 -0
- package/docs/Customer.md +98 -0
- package/docs/CustomerRate.md +22 -0
- package/docs/CustomerRateType.md +12 -0
- package/docs/GetDisconnectDDIRequest.md +20 -0
- package/docs/InboundCli.md +50 -0
- package/docs/InboundTariffPlan.md +32 -0
- package/docs/InboundTariffPlanResponse.md +28 -0
- package/docs/MultiTenantSipTrunkRequest.md +22 -0
- package/docs/OutboundCli.md +70 -0
- package/docs/PostAddBroadbandRequest.md +28 -0
- package/docs/PostAddCallTariffToCallTariffPlanRequest.md +34 -0
- package/docs/PostAddEthernetRequest.md +28 -0
- package/docs/PostAddRecurringChargeRequest.md +30 -0
- package/docs/PostAddServiceToServicePlanRequest.md +30 -0
- package/docs/PostAddSipTrunkDDIsRequest.md +30 -0
- package/docs/PostGetBaseServicesRequest.md +22 -0
- package/docs/PostGetPriceGroupsRequest.md +22 -0
- package/docs/PostGetServicePlansRequest.md +22 -0
- package/docs/PostGetSipTrunksBillingRequest.md +34 -0
- package/docs/PostUpdateConnectionRequest.md +22 -0
- package/docs/PostUpdateRecurringChargeRequest.md +30 -0
- package/docs/PriceGroup.md +30 -0
- package/docs/PriceGroupResponse.md +24 -0
- package/docs/ProcessedCdr.md +96 -0
- package/docs/PutAddCallTariffToCallTariffPlanRequest.md +30 -0
- package/docs/PutAddServiceToServicePlanRequest.md +26 -0
- package/docs/{PutTransferConnectionRequest.md → PutConnectionSearchRequest.md} +3 -3
- package/docs/PutGetBaseServicesRequest.md +28 -0
- package/docs/PutGetCallTariffPlanRequest.md +28 -0
- package/docs/PutGetPriceGroupsRequest.md +28 -0
- package/docs/RecurringCharge.md +48 -0
- package/docs/SdrReferenceType.md +24 -0
- package/docs/Service.md +42 -0
- package/docs/ServicePlan.md +36 -0
- package/docs/TariffRate.md +30 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1044,6 +1044,17 @@ export declare const AxisDataDTOTypeEnum: {
|
|
|
1044
1044
|
readonly Log: "log";
|
|
1045
1045
|
};
|
|
1046
1046
|
export type AxisDataDTOTypeEnum = typeof AxisDataDTOTypeEnum[keyof typeof AxisDataDTOTypeEnum];
|
|
1047
|
+
export interface BaseService {
|
|
1048
|
+
'createdDate'?: string;
|
|
1049
|
+
'id'?: number;
|
|
1050
|
+
'serviceCode'?: string | null;
|
|
1051
|
+
'dataType': string | null;
|
|
1052
|
+
'originalDescription': string | null;
|
|
1053
|
+
'cost'?: number;
|
|
1054
|
+
'startDate'?: string;
|
|
1055
|
+
'endDate'?: string | null;
|
|
1056
|
+
'filePeriod'?: string | null;
|
|
1057
|
+
}
|
|
1047
1058
|
/**
|
|
1048
1059
|
* Basic Order Item
|
|
1049
1060
|
*/
|
|
@@ -1225,6 +1236,26 @@ export interface BatchEntity {
|
|
|
1225
1236
|
*/
|
|
1226
1237
|
'mac'?: string;
|
|
1227
1238
|
}
|
|
1239
|
+
export interface Bundle {
|
|
1240
|
+
'createdDate'?: string;
|
|
1241
|
+
'id'?: number;
|
|
1242
|
+
'name': string | null;
|
|
1243
|
+
'category': string | null;
|
|
1244
|
+
'description': string | null;
|
|
1245
|
+
'customers'?: Array<Customer> | null;
|
|
1246
|
+
'bundleCustomers'?: Array<BundleCustomer> | null;
|
|
1247
|
+
'filePeriod'?: string | null;
|
|
1248
|
+
}
|
|
1249
|
+
export interface BundleCustomer {
|
|
1250
|
+
'createdDate'?: string;
|
|
1251
|
+
'id'?: number;
|
|
1252
|
+
'bundleId'?: number;
|
|
1253
|
+
'bundle': Bundle;
|
|
1254
|
+
'customerId'?: number;
|
|
1255
|
+
'customer': Customer;
|
|
1256
|
+
'endDate'?: string | null;
|
|
1257
|
+
'filePeriod'?: string | null;
|
|
1258
|
+
}
|
|
1228
1259
|
/**
|
|
1229
1260
|
* Call Barring
|
|
1230
1261
|
*/
|
|
@@ -1250,6 +1281,82 @@ export interface CallBarringModel {
|
|
|
1250
1281
|
*/
|
|
1251
1282
|
'block087Calls'?: boolean;
|
|
1252
1283
|
}
|
|
1284
|
+
export interface CallTariff {
|
|
1285
|
+
'createdDate'?: string;
|
|
1286
|
+
'id'?: number;
|
|
1287
|
+
'callTariffPlanId'?: number | null;
|
|
1288
|
+
'inboundTariffPlanId'?: number | null;
|
|
1289
|
+
'priceGroupId'?: number;
|
|
1290
|
+
'priceGroup': PriceGroup;
|
|
1291
|
+
'tariffRate': TariffRate;
|
|
1292
|
+
'filePeriod'?: string | null;
|
|
1293
|
+
}
|
|
1294
|
+
export interface CallTariffPlan {
|
|
1295
|
+
'createdDate'?: string;
|
|
1296
|
+
'id'?: number;
|
|
1297
|
+
'name': string | null;
|
|
1298
|
+
'unknownDestinationsRate': CustomerRate;
|
|
1299
|
+
'ngcsAccessChargePerMin'?: number;
|
|
1300
|
+
'ngcsAccessChargePerCall'?: number;
|
|
1301
|
+
'callTariffs'?: Array<CallTariff> | null;
|
|
1302
|
+
'filePeriod'?: string | null;
|
|
1303
|
+
'closed'?: boolean;
|
|
1304
|
+
}
|
|
1305
|
+
export interface CallTariffResponse {
|
|
1306
|
+
'id'?: number;
|
|
1307
|
+
'priceGroupId'?: number;
|
|
1308
|
+
'priceGroup'?: PriceGroupResponse;
|
|
1309
|
+
'tariffRate'?: TariffRate;
|
|
1310
|
+
}
|
|
1311
|
+
export interface Cdr {
|
|
1312
|
+
'id'?: number;
|
|
1313
|
+
'callType': string | null;
|
|
1314
|
+
'callCause'?: string | null;
|
|
1315
|
+
'customerIdentifier': string | null;
|
|
1316
|
+
'nonChargedParty': string | null;
|
|
1317
|
+
'callDate': string;
|
|
1318
|
+
'callTime': string;
|
|
1319
|
+
'duration'?: number | null;
|
|
1320
|
+
'bytesTransmitted'?: number | null;
|
|
1321
|
+
'bytesReceived'?: number | null;
|
|
1322
|
+
'description'?: string | null;
|
|
1323
|
+
'chargecode'?: string | null;
|
|
1324
|
+
'timeBand'?: string | null;
|
|
1325
|
+
'salesprice'?: number | null;
|
|
1326
|
+
'salespricePreBundle'?: number | null;
|
|
1327
|
+
'extension'?: string | null;
|
|
1328
|
+
'ddi'?: string | null;
|
|
1329
|
+
'groupingID'?: string | null;
|
|
1330
|
+
'callClass'?: string | null;
|
|
1331
|
+
'carrier'?: string | null;
|
|
1332
|
+
'recording'?: boolean | null;
|
|
1333
|
+
'vat'?: string | null;
|
|
1334
|
+
'countryOfOrigin'?: string | null;
|
|
1335
|
+
'network'?: string | null;
|
|
1336
|
+
'retailTariffCode'?: string | null;
|
|
1337
|
+
'remoteNetwork'?: string | null;
|
|
1338
|
+
'apn'?: string | null;
|
|
1339
|
+
'divertedNumber'?: string | null;
|
|
1340
|
+
'ringTime'?: number | null;
|
|
1341
|
+
'recordID'?: string | null;
|
|
1342
|
+
'currency'?: string | null;
|
|
1343
|
+
'presentationNumber'?: string | null;
|
|
1344
|
+
'networkAccessReference'?: string | null;
|
|
1345
|
+
'ngcsAccessCharge'?: number | null;
|
|
1346
|
+
'ngcsServiceCharge'?: number | null;
|
|
1347
|
+
'totalBytesTransferred'?: number | null;
|
|
1348
|
+
'userID'?: string | null;
|
|
1349
|
+
'onwardBillingReference'?: string | null;
|
|
1350
|
+
'contractName'?: string | null;
|
|
1351
|
+
'bundleName'?: string | null;
|
|
1352
|
+
'bundleAllowance'?: number | null;
|
|
1353
|
+
'discountReference'?: string | null;
|
|
1354
|
+
'routingCode'?: string | null;
|
|
1355
|
+
'filename': string | null;
|
|
1356
|
+
'contentReference': string | null;
|
|
1357
|
+
'processedCdr'?: ProcessedCdr;
|
|
1358
|
+
'filePeriod': string | null;
|
|
1359
|
+
}
|
|
1253
1360
|
/**
|
|
1254
1361
|
* Client Details
|
|
1255
1362
|
*/
|
|
@@ -1329,6 +1436,46 @@ export interface CompanyContractModel {
|
|
|
1329
1436
|
*/
|
|
1330
1437
|
'timeRemaining'?: string;
|
|
1331
1438
|
}
|
|
1439
|
+
export interface ConnectionRequest {
|
|
1440
|
+
'customerId': number;
|
|
1441
|
+
'reference': string | null;
|
|
1442
|
+
'connectionDate': string;
|
|
1443
|
+
'servicePlanId': number;
|
|
1444
|
+
'zeroRated'?: boolean | null;
|
|
1445
|
+
'callTariffPlanId'?: number | null;
|
|
1446
|
+
'inboundTariffPlanId'?: number | null;
|
|
1447
|
+
'invoiceDescription'?: string | null;
|
|
1448
|
+
'mtSipTrunkRequest'?: MultiTenantSipTrunkRequest;
|
|
1449
|
+
}
|
|
1450
|
+
export interface ConnectionType {
|
|
1451
|
+
'createdDate'?: string;
|
|
1452
|
+
'id'?: number;
|
|
1453
|
+
'name': string | null;
|
|
1454
|
+
'description'?: string | null;
|
|
1455
|
+
'accountCode': string | null;
|
|
1456
|
+
}
|
|
1457
|
+
export interface ContactDetail {
|
|
1458
|
+
'customerName': string | null;
|
|
1459
|
+
'contactName'?: string | null;
|
|
1460
|
+
'address1'?: string | null;
|
|
1461
|
+
'address2'?: string | null;
|
|
1462
|
+
'address3'?: string | null;
|
|
1463
|
+
'address4'?: string | null;
|
|
1464
|
+
'postCode'?: string | null;
|
|
1465
|
+
'country'?: string | null;
|
|
1466
|
+
'phone1'?: string | null;
|
|
1467
|
+
'email'?: string | null;
|
|
1468
|
+
'siteInfo'?: string | null;
|
|
1469
|
+
'siteContactName'?: string | null;
|
|
1470
|
+
'siteAddress1'?: string | null;
|
|
1471
|
+
'siteAddress2'?: string | null;
|
|
1472
|
+
'siteAddress3'?: string | null;
|
|
1473
|
+
'siteAddress4'?: string | null;
|
|
1474
|
+
'sitePostcode'?: string | null;
|
|
1475
|
+
'siteCountry'?: string | null;
|
|
1476
|
+
'sitePhone1'?: string | null;
|
|
1477
|
+
'siteEmail'?: string | null;
|
|
1478
|
+
}
|
|
1332
1479
|
/**
|
|
1333
1480
|
* Order Contact Info
|
|
1334
1481
|
*/
|
|
@@ -1868,6 +2015,48 @@ export interface CrmNoteModel {
|
|
|
1868
2015
|
*/
|
|
1869
2016
|
'callId'?: number;
|
|
1870
2017
|
}
|
|
2018
|
+
export interface Customer {
|
|
2019
|
+
'createdDate'?: string;
|
|
2020
|
+
'id'?: number;
|
|
2021
|
+
'customerCode': string | null;
|
|
2022
|
+
'parentCustomerCode'?: string | null;
|
|
2023
|
+
'customerName': string | null;
|
|
2024
|
+
'accountId'?: string | null;
|
|
2025
|
+
'contactName'?: string | null;
|
|
2026
|
+
'address1'?: string | null;
|
|
2027
|
+
'address2'?: string | null;
|
|
2028
|
+
'address3'?: string | null;
|
|
2029
|
+
'address4'?: string | null;
|
|
2030
|
+
'postCode'?: string | null;
|
|
2031
|
+
'country'?: string | null;
|
|
2032
|
+
'phone1'?: string | null;
|
|
2033
|
+
'email'?: string | null;
|
|
2034
|
+
'ddEnabled'?: boolean | null;
|
|
2035
|
+
'acClosedDate'?: string | null;
|
|
2036
|
+
'siteInfo'?: string | null;
|
|
2037
|
+
'siteContactName'?: string | null;
|
|
2038
|
+
'siteAddress1'?: string | null;
|
|
2039
|
+
'siteAddress2'?: string | null;
|
|
2040
|
+
'siteAddress3'?: string | null;
|
|
2041
|
+
'siteAddress4'?: string | null;
|
|
2042
|
+
'sitePostcode'?: string | null;
|
|
2043
|
+
'siteCountry'?: string | null;
|
|
2044
|
+
'sitePhone1'?: string | null;
|
|
2045
|
+
'siteEmail'?: string | null;
|
|
2046
|
+
'vatCode'?: string | null;
|
|
2047
|
+
'outboundClis'?: Array<OutboundCli> | null;
|
|
2048
|
+
'inboundClis'?: Array<InboundCli> | null;
|
|
2049
|
+
'bundles'?: Array<Bundle> | null;
|
|
2050
|
+
'bundleCustomers'?: Array<BundleCustomer> | null;
|
|
2051
|
+
'ddiBilling'?: boolean;
|
|
2052
|
+
'lastInvoiceNumber'?: string | null;
|
|
2053
|
+
'username'?: string | null;
|
|
2054
|
+
'sshKey'?: string | null;
|
|
2055
|
+
'directCustomer'?: boolean;
|
|
2056
|
+
'parentCustomer'?: boolean;
|
|
2057
|
+
'childCustomer'?: boolean;
|
|
2058
|
+
'acClosed'?: boolean;
|
|
2059
|
+
}
|
|
1871
2060
|
/**
|
|
1872
2061
|
* Customer Coordinates
|
|
1873
2062
|
*/
|
|
@@ -2075,6 +2264,16 @@ export interface CustomerPriceListEnum {
|
|
|
2075
2264
|
*/
|
|
2076
2265
|
'name'?: string;
|
|
2077
2266
|
}
|
|
2267
|
+
export interface CustomerRate {
|
|
2268
|
+
'markup'?: CustomerRateType;
|
|
2269
|
+
'amount'?: number;
|
|
2270
|
+
}
|
|
2271
|
+
export declare const CustomerRateType: {
|
|
2272
|
+
readonly Fixed: "FIXED";
|
|
2273
|
+
readonly MarkupPercent: "MARKUP_PERCENT";
|
|
2274
|
+
readonly MarkupFixed: "MARKUP_FIXED";
|
|
2275
|
+
};
|
|
2276
|
+
export type CustomerRateType = typeof CustomerRateType[keyof typeof CustomerRateType];
|
|
2078
2277
|
/**
|
|
2079
2278
|
* Customer Summary Report
|
|
2080
2279
|
*/
|
|
@@ -2647,6 +2846,9 @@ export interface GenericFileModel {
|
|
|
2647
2846
|
export interface GetCheckMacExists200Response {
|
|
2648
2847
|
'found'?: boolean;
|
|
2649
2848
|
}
|
|
2849
|
+
export interface GetDisconnectDDIRequest {
|
|
2850
|
+
'id'?: number;
|
|
2851
|
+
}
|
|
2650
2852
|
export interface GetGetPrice200Response {
|
|
2651
2853
|
'price'?: number;
|
|
2652
2854
|
}
|
|
@@ -2779,6 +2981,40 @@ export declare const HostingRegionDTOCodeEnum: {
|
|
|
2779
2981
|
readonly UsWestOr1: "US-WEST-OR-1";
|
|
2780
2982
|
};
|
|
2781
2983
|
export type HostingRegionDTOCodeEnum = typeof HostingRegionDTOCodeEnum[keyof typeof HostingRegionDTOCodeEnum];
|
|
2984
|
+
export interface InboundCli {
|
|
2985
|
+
'createdDate'?: string;
|
|
2986
|
+
'id'?: number;
|
|
2987
|
+
'cli': string | null;
|
|
2988
|
+
'customerId'?: number;
|
|
2989
|
+
'customer': Customer;
|
|
2990
|
+
'prefix': string | null;
|
|
2991
|
+
'phoneNumber': string | null;
|
|
2992
|
+
'operator': string | null;
|
|
2993
|
+
'inboundTariffPlanId'?: number;
|
|
2994
|
+
'inboundTariffPlan'?: InboundTariffPlan;
|
|
2995
|
+
'invoiceDescription'?: string | null;
|
|
2996
|
+
'connected'?: boolean;
|
|
2997
|
+
'disconnectedDate'?: string | null;
|
|
2998
|
+
'lastInvoicedPeriod'?: string | null;
|
|
2999
|
+
'planName'?: string | null;
|
|
3000
|
+
'filePeriod'?: string | null;
|
|
3001
|
+
}
|
|
3002
|
+
export interface InboundTariffPlan {
|
|
3003
|
+
'createdDate'?: string;
|
|
3004
|
+
'id'?: number;
|
|
3005
|
+
'name': string | null;
|
|
3006
|
+
'rate': TariffRate;
|
|
3007
|
+
'terminationOverrideTariffs'?: Array<CallTariff> | null;
|
|
3008
|
+
'filePeriod'?: string | null;
|
|
3009
|
+
'closed'?: boolean;
|
|
3010
|
+
}
|
|
3011
|
+
export interface InboundTariffPlanResponse {
|
|
3012
|
+
'id'?: number;
|
|
3013
|
+
'name'?: string | null;
|
|
3014
|
+
'rate'?: TariffRate;
|
|
3015
|
+
'callTariffs'?: Array<CallTariffResponse> | null;
|
|
3016
|
+
'closed'?: boolean;
|
|
3017
|
+
}
|
|
2782
3018
|
/**
|
|
2783
3019
|
* Installation Passwords
|
|
2784
3020
|
*/
|
|
@@ -3435,6 +3671,10 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
3435
3671
|
readonly CallBarring: "Call Barring";
|
|
3436
3672
|
};
|
|
3437
3673
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
3674
|
+
export interface MultiTenantSipTrunkRequest {
|
|
3675
|
+
'isPrimary': boolean;
|
|
3676
|
+
'mtPrimarySipTrunkId'?: number | null;
|
|
3677
|
+
}
|
|
3438
3678
|
/**
|
|
3439
3679
|
* Navigation Endpoint
|
|
3440
3680
|
*/
|
|
@@ -4461,6 +4701,34 @@ export interface OrderedItemModel {
|
|
|
4461
4701
|
*/
|
|
4462
4702
|
'returnedStock'?: number;
|
|
4463
4703
|
}
|
|
4704
|
+
export interface OutboundCli {
|
|
4705
|
+
'createdDate'?: string;
|
|
4706
|
+
'id'?: number;
|
|
4707
|
+
'cli': string | null;
|
|
4708
|
+
'customerId'?: number;
|
|
4709
|
+
'customer'?: Customer;
|
|
4710
|
+
'operator'?: string | null;
|
|
4711
|
+
'callTariffPlanId'?: number | null;
|
|
4712
|
+
'callTariffPlan'?: CallTariffPlan;
|
|
4713
|
+
'servicePlanId'?: number;
|
|
4714
|
+
'servicePlan'?: ServicePlan;
|
|
4715
|
+
'invoiceDescription'?: string | null;
|
|
4716
|
+
'inboundTariffPlanId'?: number | null;
|
|
4717
|
+
'inboundTariffPlan'?: InboundTariffPlan;
|
|
4718
|
+
'inboundInvoiceDescription'?: string | null;
|
|
4719
|
+
'serviceID'?: string | null;
|
|
4720
|
+
'connectedDate'?: string;
|
|
4721
|
+
'disconnectedDate'?: string | null;
|
|
4722
|
+
'lastTrafficPeriod'?: string | null;
|
|
4723
|
+
'filePeriod'?: string | null;
|
|
4724
|
+
'sipTrunkSdrRefId'?: number | null;
|
|
4725
|
+
'isMtPrimarySipTrunk'?: boolean;
|
|
4726
|
+
'mtPrimarySipTrunkId'?: number | null;
|
|
4727
|
+
'zeroRated'?: boolean;
|
|
4728
|
+
'connected'?: boolean;
|
|
4729
|
+
'futureConnection'?: boolean;
|
|
4730
|
+
'sdrRefType'?: SdrReferenceType;
|
|
4731
|
+
}
|
|
4464
4732
|
/**
|
|
4465
4733
|
* 3CX Partner Details
|
|
4466
4734
|
*/
|
|
@@ -4818,12 +5086,72 @@ export interface PortalLoginModel {
|
|
|
4818
5086
|
*/
|
|
4819
5087
|
'redirect_uri'?: string;
|
|
4820
5088
|
}
|
|
5089
|
+
export interface PostAddBroadbandRequest {
|
|
5090
|
+
'customerId'?: number | null;
|
|
5091
|
+
'orderId'?: number;
|
|
5092
|
+
/**
|
|
5093
|
+
* Date Time
|
|
5094
|
+
*/
|
|
5095
|
+
'connectionDate'?: string | null;
|
|
5096
|
+
'servicePlanName'?: string;
|
|
5097
|
+
'invoiceDescription'?: string | null;
|
|
5098
|
+
}
|
|
5099
|
+
export interface PostAddCallTariffToCallTariffPlanRequest {
|
|
5100
|
+
'planName'?: string;
|
|
5101
|
+
'priceGroupName'?: string;
|
|
5102
|
+
'tariffRateMarkup'?: string;
|
|
5103
|
+
'tariffRateDay'?: number;
|
|
5104
|
+
'tariffRateEvening'?: number;
|
|
5105
|
+
'tariffRateWeekend'?: number;
|
|
5106
|
+
'tariffRateMinimum'?: number;
|
|
5107
|
+
'tariffRateSetup'?: number;
|
|
5108
|
+
}
|
|
5109
|
+
export interface PostAddEthernetRequest {
|
|
5110
|
+
'customerId'?: number | null;
|
|
5111
|
+
'cesRef'?: string;
|
|
5112
|
+
/**
|
|
5113
|
+
* Date Time
|
|
5114
|
+
*/
|
|
5115
|
+
'connectionDate'?: string | null;
|
|
5116
|
+
'servicePlanName'?: string;
|
|
5117
|
+
'invoiceDescription'?: string | null;
|
|
5118
|
+
}
|
|
4821
5119
|
export interface PostAddOrderNoteRequest {
|
|
4822
5120
|
/**
|
|
4823
5121
|
* Order Note
|
|
4824
5122
|
*/
|
|
4825
5123
|
'note'?: string;
|
|
4826
5124
|
}
|
|
5125
|
+
export interface PostAddRecurringChargeRequest {
|
|
5126
|
+
'reference'?: string;
|
|
5127
|
+
'description'?: string;
|
|
5128
|
+
'customerCharge'?: number;
|
|
5129
|
+
'quantity'?: number;
|
|
5130
|
+
/**
|
|
5131
|
+
* Date Time
|
|
5132
|
+
*/
|
|
5133
|
+
'endPeriod'?: string | null;
|
|
5134
|
+
'accountCode'?: string | null;
|
|
5135
|
+
}
|
|
5136
|
+
export interface PostAddServiceToServicePlanRequest {
|
|
5137
|
+
'serviceCode'?: string;
|
|
5138
|
+
'planGroup'?: string;
|
|
5139
|
+
'customerRate_Markup'?: string;
|
|
5140
|
+
'customerRate_Amount'?: number;
|
|
5141
|
+
'description'?: string | null;
|
|
5142
|
+
'hideOnInvoice'?: boolean | null;
|
|
5143
|
+
}
|
|
5144
|
+
export interface PostAddSipTrunkDDIsRequest {
|
|
5145
|
+
'startDDI'?: Array<string>;
|
|
5146
|
+
'sipTrunkSdrRefId'?: string;
|
|
5147
|
+
/**
|
|
5148
|
+
* Date Time
|
|
5149
|
+
*/
|
|
5150
|
+
'connectionDate'?: string | null;
|
|
5151
|
+
'endDDI'?: Array<string> | null;
|
|
5152
|
+
'inboundTariffPlanName'?: Array<string> | null;
|
|
5153
|
+
'invoiceDescription'?: Array<string> | null;
|
|
5154
|
+
}
|
|
4827
5155
|
export interface PostAddWebhook200Response {
|
|
4828
5156
|
'url'?: string;
|
|
4829
5157
|
}
|
|
@@ -4831,12 +5159,20 @@ export interface PostAddWebhook200Response {
|
|
|
4831
5159
|
* @type PostGenerateReport200Response
|
|
4832
5160
|
*/
|
|
4833
5161
|
export type PostGenerateReport200Response = GraphDTO | TableDTO;
|
|
5162
|
+
export interface PostGetBaseServicesRequest {
|
|
5163
|
+
'serviceCode'?: string | null;
|
|
5164
|
+
'originalDescription'?: string;
|
|
5165
|
+
}
|
|
4834
5166
|
export interface PostGetClientCredentialsRequest {
|
|
4835
5167
|
/**
|
|
4836
5168
|
* OAuth 2.0 scopes
|
|
4837
5169
|
*/
|
|
4838
5170
|
'scopes'?: Array<string>;
|
|
4839
5171
|
}
|
|
5172
|
+
export interface PostGetPriceGroupsRequest {
|
|
5173
|
+
'name'?: string;
|
|
5174
|
+
'description'?: string;
|
|
5175
|
+
}
|
|
4840
5176
|
export interface PostGetProductForCustomerRequest {
|
|
4841
5177
|
/**
|
|
4842
5178
|
* Quantity
|
|
@@ -4859,6 +5195,38 @@ export interface PostGetProductForCustomerRequest {
|
|
|
4859
5195
|
*/
|
|
4860
5196
|
'renewalYears'?: number | null;
|
|
4861
5197
|
}
|
|
5198
|
+
export interface PostGetServicePlansRequest {
|
|
5199
|
+
'name'?: string;
|
|
5200
|
+
'planGroup'?: PostGetServicePlansRequestPlanGroupEnum;
|
|
5201
|
+
}
|
|
5202
|
+
export declare const PostGetServicePlansRequestPlanGroupEnum: {
|
|
5203
|
+
readonly SipTrunks: "SIP Trunks";
|
|
5204
|
+
readonly Broadband: "Broadband";
|
|
5205
|
+
readonly Ethernet: "Ethernet";
|
|
5206
|
+
readonly Mobile: "Mobile";
|
|
5207
|
+
readonly Wlr: "WLR";
|
|
5208
|
+
readonly Horizon: "Horizon";
|
|
5209
|
+
readonly Nts: "NTS";
|
|
5210
|
+
readonly Hosting: "Hosting";
|
|
5211
|
+
readonly Crm: "CRM";
|
|
5212
|
+
readonly StarterBundle: "Starter Bundle";
|
|
5213
|
+
readonly Other: "Other";
|
|
5214
|
+
readonly RecurringCharges: "Recurring Charges";
|
|
5215
|
+
};
|
|
5216
|
+
export type PostGetServicePlansRequestPlanGroupEnum = typeof PostGetServicePlansRequestPlanGroupEnum[keyof typeof PostGetServicePlansRequestPlanGroupEnum];
|
|
5217
|
+
export interface PostGetSipTrunksBillingRequest {
|
|
5218
|
+
'parentEndpointId'?: string | null;
|
|
5219
|
+
'endpointId'?: string;
|
|
5220
|
+
/**
|
|
5221
|
+
* Date Time
|
|
5222
|
+
*/
|
|
5223
|
+
'connectionDate'?: string | null;
|
|
5224
|
+
'servicePlanName'?: string;
|
|
5225
|
+
'callTariffPlanName'?: string;
|
|
5226
|
+
'invoiceDescription'?: string | null;
|
|
5227
|
+
'isMtPrimarySipTrunk'?: boolean | null;
|
|
5228
|
+
'mtPrimarySipTrunkId'?: number | null;
|
|
5229
|
+
}
|
|
4862
5230
|
export interface PostSendWelcomeEmailRequest {
|
|
4863
5231
|
/**
|
|
4864
5232
|
* email
|
|
@@ -4871,6 +5239,34 @@ export interface PostSplitOrderRequest {
|
|
|
4871
5239
|
*/
|
|
4872
5240
|
'itemIds'?: Array<number>;
|
|
4873
5241
|
}
|
|
5242
|
+
export interface PostUpdateConnectionRequest {
|
|
5243
|
+
'property'?: string;
|
|
5244
|
+
'value'?: string;
|
|
5245
|
+
}
|
|
5246
|
+
export interface PostUpdateRecurringChargeRequest {
|
|
5247
|
+
'reference'?: string | null;
|
|
5248
|
+
'description'?: string | null;
|
|
5249
|
+
'customerCharge'?: number | null;
|
|
5250
|
+
'quantity'?: number | null;
|
|
5251
|
+
/**
|
|
5252
|
+
* Date Time
|
|
5253
|
+
*/
|
|
5254
|
+
'endPeriod'?: string | null;
|
|
5255
|
+
'accountCode'?: string | null;
|
|
5256
|
+
}
|
|
5257
|
+
export interface PriceGroup {
|
|
5258
|
+
'createdDate'?: string;
|
|
5259
|
+
'id'?: number;
|
|
5260
|
+
'name': string | null;
|
|
5261
|
+
'category': string | null;
|
|
5262
|
+
'description': string | null;
|
|
5263
|
+
'filePeriod'?: string | null;
|
|
5264
|
+
}
|
|
5265
|
+
export interface PriceGroupResponse {
|
|
5266
|
+
'id'?: number;
|
|
5267
|
+
'name'?: string | null;
|
|
5268
|
+
'description'?: string | null;
|
|
5269
|
+
}
|
|
4874
5270
|
/**
|
|
4875
5271
|
* Price & Stock List
|
|
4876
5272
|
*/
|
|
@@ -4950,6 +5346,47 @@ export interface PrizesEntity {
|
|
|
4950
5346
|
*/
|
|
4951
5347
|
'image'?: string;
|
|
4952
5348
|
}
|
|
5349
|
+
export interface ProcessedCdr {
|
|
5350
|
+
'id'?: number;
|
|
5351
|
+
'cdrId'?: number;
|
|
5352
|
+
'cdr'?: Cdr;
|
|
5353
|
+
'contentReference'?: string | null;
|
|
5354
|
+
'callClass'?: string | null;
|
|
5355
|
+
'inbound'?: boolean;
|
|
5356
|
+
'cli'?: string | null;
|
|
5357
|
+
'presentationNumber'?: string | null;
|
|
5358
|
+
'outboundCliId'?: number | null;
|
|
5359
|
+
'outboundCli'?: OutboundCli;
|
|
5360
|
+
'mtPrimaryOutboundCliId'?: number | null;
|
|
5361
|
+
'mtPrimaryOutboundCli'?: OutboundCli;
|
|
5362
|
+
'callTariffPlanId'?: number | null;
|
|
5363
|
+
'callTariffPlan'?: CallTariffPlan;
|
|
5364
|
+
'inboundTariffPlanId'?: number | null;
|
|
5365
|
+
'inboundTariffPlan'?: InboundTariffPlan;
|
|
5366
|
+
'callTariffId'?: number | null;
|
|
5367
|
+
'callTariff'?: CallTariff;
|
|
5368
|
+
'customerChargePreRounded'?: number | null;
|
|
5369
|
+
'customerCharge'?: number | null;
|
|
5370
|
+
'customerChargePostBundle'?: number | null;
|
|
5371
|
+
'bundleName'?: string | null;
|
|
5372
|
+
'customerId'?: number | null;
|
|
5373
|
+
'tariffPlanName'?: string | null;
|
|
5374
|
+
'chargecode'?: string | null;
|
|
5375
|
+
'priceGroupName'?: string | null;
|
|
5376
|
+
'unknownDestRate'?: CustomerRate;
|
|
5377
|
+
'ngcsAcsChgPerMin'?: number | null;
|
|
5378
|
+
'ngcsAcsChgPerCall'?: number | null;
|
|
5379
|
+
'customerNGCSAcssChg'?: number | null;
|
|
5380
|
+
'customerRate'?: CustomerRate;
|
|
5381
|
+
'salesprice'?: number | null;
|
|
5382
|
+
'callDateTime'?: string | null;
|
|
5383
|
+
'duration'?: number | null;
|
|
5384
|
+
'ngcsServiceCharge'?: number | null;
|
|
5385
|
+
'cdrDescription'?: string | null;
|
|
5386
|
+
'calledNumber'?: string | null;
|
|
5387
|
+
'remarks'?: string | null;
|
|
5388
|
+
'filePeriod'?: string | null;
|
|
5389
|
+
}
|
|
4953
5390
|
/**
|
|
4954
5391
|
* Product Detailed Summary
|
|
4955
5392
|
*/
|
|
@@ -5334,6 +5771,20 @@ export interface ProvisioningRequestEntity {
|
|
|
5334
5771
|
*/
|
|
5335
5772
|
'auth'?: string;
|
|
5336
5773
|
}
|
|
5774
|
+
export interface PutAddCallTariffToCallTariffPlanRequest {
|
|
5775
|
+
'tariffRateMarkup'?: string;
|
|
5776
|
+
'tariffRateDay'?: number;
|
|
5777
|
+
'tariffRateEvening'?: number;
|
|
5778
|
+
'tariffRateWeekend'?: number;
|
|
5779
|
+
'tariffRateMinimum'?: number;
|
|
5780
|
+
'tariffRateSetup'?: number;
|
|
5781
|
+
}
|
|
5782
|
+
export interface PutAddServiceToServicePlanRequest {
|
|
5783
|
+
'customerRate_Markup'?: string;
|
|
5784
|
+
'customerRate_Amount'?: number;
|
|
5785
|
+
'description'?: string | null;
|
|
5786
|
+
'hideOnInvoice'?: boolean | null;
|
|
5787
|
+
}
|
|
5337
5788
|
export interface PutAllocateItemsRequest {
|
|
5338
5789
|
/**
|
|
5339
5790
|
* Items
|
|
@@ -5350,12 +5801,33 @@ export interface PutAllocateItemsRequestItemsInner {
|
|
|
5350
5801
|
*/
|
|
5351
5802
|
'quantity'?: number;
|
|
5352
5803
|
}
|
|
5353
|
-
export interface
|
|
5804
|
+
export interface PutConnectionSearchRequest {
|
|
5354
5805
|
/**
|
|
5355
5806
|
* Customer ID
|
|
5356
5807
|
*/
|
|
5357
5808
|
'customerId'?: number;
|
|
5358
5809
|
}
|
|
5810
|
+
export interface PutGetBaseServicesRequest {
|
|
5811
|
+
'property'?: string;
|
|
5812
|
+
'value'?: string;
|
|
5813
|
+
'serviceCodeAdmin'?: string | null;
|
|
5814
|
+
'description'?: string | null;
|
|
5815
|
+
'dataType'?: string | null;
|
|
5816
|
+
}
|
|
5817
|
+
export interface PutGetCallTariffPlanRequest {
|
|
5818
|
+
'name'?: string;
|
|
5819
|
+
'unknownDestinationsRateType'?: string;
|
|
5820
|
+
'unknownDestinationsRateAmount'?: number;
|
|
5821
|
+
'ngcsAccessChargePerMin'?: number;
|
|
5822
|
+
'ngcsAccessChargePerCall'?: number;
|
|
5823
|
+
}
|
|
5824
|
+
export interface PutGetPriceGroupsRequest {
|
|
5825
|
+
'property'?: string;
|
|
5826
|
+
'value'?: string;
|
|
5827
|
+
'unknownDestinationsRateAmount'?: number;
|
|
5828
|
+
'ngcsAccessChargePerMin'?: number;
|
|
5829
|
+
'ngcsAccessChargePerCall'?: number;
|
|
5830
|
+
}
|
|
5359
5831
|
/**
|
|
5360
5832
|
* Azure Recordings Backup
|
|
5361
5833
|
*/
|
|
@@ -5394,6 +5866,23 @@ export interface RecordingsBackupInfoDTO {
|
|
|
5394
5866
|
*/
|
|
5395
5867
|
'storage'?: TcxRemoteStorageModel | null;
|
|
5396
5868
|
}
|
|
5869
|
+
export interface RecurringCharge {
|
|
5870
|
+
'createdDate'?: string;
|
|
5871
|
+
'id'?: number;
|
|
5872
|
+
'customerId'?: number;
|
|
5873
|
+
'customer': Customer;
|
|
5874
|
+
'phoneNumber': string | null;
|
|
5875
|
+
'description': string | null;
|
|
5876
|
+
'channelPartnerBuy'?: number;
|
|
5877
|
+
'customerCharge'?: number;
|
|
5878
|
+
'frequency'?: number;
|
|
5879
|
+
'startDate': string;
|
|
5880
|
+
'endDate'?: string | null;
|
|
5881
|
+
'quantity'?: number;
|
|
5882
|
+
'accountCode'?: string | null;
|
|
5883
|
+
'filePeriod'?: string | null;
|
|
5884
|
+
'isActive'?: boolean;
|
|
5885
|
+
}
|
|
5397
5886
|
/**
|
|
5398
5887
|
* Remote Storage
|
|
5399
5888
|
*/
|
|
@@ -5604,6 +6093,18 @@ export interface ScopeModel {
|
|
|
5604
6093
|
*/
|
|
5605
6094
|
'description'?: string;
|
|
5606
6095
|
}
|
|
6096
|
+
export declare const SdrReferenceType: {
|
|
6097
|
+
readonly SipTrunk: "SIP_TRUNK";
|
|
6098
|
+
readonly Broadband: "BROADBAND";
|
|
6099
|
+
readonly Ethernet: "ETHERNET";
|
|
6100
|
+
readonly Mobile: "MOBILE";
|
|
6101
|
+
readonly Wlr: "WLR";
|
|
6102
|
+
readonly Hzn: "HZN";
|
|
6103
|
+
readonly Nts: "NTS";
|
|
6104
|
+
readonly Hosting: "HOSTING";
|
|
6105
|
+
readonly Crm: "CRM";
|
|
6106
|
+
};
|
|
6107
|
+
export type SdrReferenceType = typeof SdrReferenceType[keyof typeof SdrReferenceType];
|
|
5607
6108
|
/**
|
|
5608
6109
|
* Graph Series Data
|
|
5609
6110
|
*/
|
|
@@ -5629,6 +6130,20 @@ export declare const SeriesDTOTypeEnum: {
|
|
|
5629
6130
|
readonly Line: "line";
|
|
5630
6131
|
};
|
|
5631
6132
|
export type SeriesDTOTypeEnum = typeof SeriesDTOTypeEnum[keyof typeof SeriesDTOTypeEnum];
|
|
6133
|
+
export interface Service {
|
|
6134
|
+
'createdDate'?: string;
|
|
6135
|
+
'id'?: number;
|
|
6136
|
+
'servicePlanId'?: number;
|
|
6137
|
+
'servicePlan'?: ServicePlan;
|
|
6138
|
+
'baseServiceId'?: number;
|
|
6139
|
+
'baseService'?: BaseService;
|
|
6140
|
+
'customerRate'?: CustomerRate;
|
|
6141
|
+
'description'?: string | null;
|
|
6142
|
+
'hideOnInvoice'?: boolean;
|
|
6143
|
+
'bureauRate'?: string | null;
|
|
6144
|
+
'filePeriod'?: string | null;
|
|
6145
|
+
'common'?: boolean;
|
|
6146
|
+
}
|
|
5632
6147
|
/**
|
|
5633
6148
|
* Service Health DTO
|
|
5634
6149
|
*/
|
|
@@ -5642,6 +6157,17 @@ export declare const ServiceHealthDTOGlobalStatusEnum: {
|
|
|
5642
6157
|
readonly NUMBER_2: 2;
|
|
5643
6158
|
};
|
|
5644
6159
|
export type ServiceHealthDTOGlobalStatusEnum = typeof ServiceHealthDTOGlobalStatusEnum[keyof typeof ServiceHealthDTOGlobalStatusEnum];
|
|
6160
|
+
export interface ServicePlan {
|
|
6161
|
+
'createdDate'?: string;
|
|
6162
|
+
'id'?: number;
|
|
6163
|
+
'name': string | null;
|
|
6164
|
+
'services'?: Array<Service> | null;
|
|
6165
|
+
'filePeriod'?: string | null;
|
|
6166
|
+
'planGroup'?: string | null;
|
|
6167
|
+
'connectionTypeId'?: number | null;
|
|
6168
|
+
'connectionType'?: ConnectionType;
|
|
6169
|
+
'closed'?: boolean;
|
|
6170
|
+
}
|
|
5645
6171
|
/**
|
|
5646
6172
|
* Service Status DTO
|
|
5647
6173
|
*/
|
|
@@ -7520,6 +8046,14 @@ export interface TableRowDTO {
|
|
|
7520
8046
|
*/
|
|
7521
8047
|
'data'?: Array<TableDataDTO>;
|
|
7522
8048
|
}
|
|
8049
|
+
export interface TariffRate {
|
|
8050
|
+
'markup'?: CustomerRateType;
|
|
8051
|
+
'day'?: number;
|
|
8052
|
+
'evening'?: number;
|
|
8053
|
+
'weekend'?: number;
|
|
8054
|
+
'minimum'?: number;
|
|
8055
|
+
'setup'?: number;
|
|
8056
|
+
}
|
|
7523
8057
|
/**
|
|
7524
8058
|
* 3CX Wizard Restore From Backup
|
|
7525
8059
|
*/
|
|
@@ -10624,6 +11158,109 @@ export type PatchSetPrizePromoStateEnum = typeof PatchSetPrizePromoStateEnum[key
|
|
|
10624
11158
|
* BillingApi - axios parameter creator
|
|
10625
11159
|
*/
|
|
10626
11160
|
export declare const BillingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11161
|
+
/**
|
|
11162
|
+
* Delete Call Tariff
|
|
11163
|
+
* @param {string} priceGroupName Price Group Name
|
|
11164
|
+
* @param {*} [options] Override http request option.
|
|
11165
|
+
* @throws {RequiredError}
|
|
11166
|
+
*/
|
|
11167
|
+
deleteAddCallTariffToCallTariffPlan: (priceGroupName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11168
|
+
/**
|
|
11169
|
+
* Delete Recurring Charges
|
|
11170
|
+
* @param {number} id Recurring Charge ID
|
|
11171
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11172
|
+
* @param {*} [options] Override http request option.
|
|
11173
|
+
* @throws {RequiredError}
|
|
11174
|
+
*/
|
|
11175
|
+
deleteAddRecurringCharge: (id: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11176
|
+
/**
|
|
11177
|
+
* Delete Service
|
|
11178
|
+
* @param {string} planGroup Plan Group
|
|
11179
|
+
* @param {string} serviceCode Service Code
|
|
11180
|
+
* @param {*} [options] Override http request option.
|
|
11181
|
+
* @throws {RequiredError}
|
|
11182
|
+
*/
|
|
11183
|
+
deleteAddServiceToServicePlan: (planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11184
|
+
/**
|
|
11185
|
+
* Delete Customer
|
|
11186
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11187
|
+
* @param {*} [options] Override http request option.
|
|
11188
|
+
* @throws {RequiredError}
|
|
11189
|
+
*/
|
|
11190
|
+
deleteCloseAccount: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11191
|
+
/**
|
|
11192
|
+
* Delete Base Service
|
|
11193
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
11194
|
+
* @param {*} [options] Override http request option.
|
|
11195
|
+
* @throws {RequiredError}
|
|
11196
|
+
*/
|
|
11197
|
+
deleteGetBaseServices: (baseServiceId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11198
|
+
/**
|
|
11199
|
+
* Delete Call Tariff Plan
|
|
11200
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
11201
|
+
* @param {*} [options] Override http request option.
|
|
11202
|
+
* @throws {RequiredError}
|
|
11203
|
+
*/
|
|
11204
|
+
deleteGetCallTariffPlan: (callTariffPlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11205
|
+
/**
|
|
11206
|
+
* Delete Price Group
|
|
11207
|
+
* @param {number} priceGroupId Price Group ID
|
|
11208
|
+
* @param {*} [options] Override http request option.
|
|
11209
|
+
* @throws {RequiredError}
|
|
11210
|
+
*/
|
|
11211
|
+
deleteGetPriceGroups: (priceGroupId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11212
|
+
/**
|
|
11213
|
+
* Delete Service Plan
|
|
11214
|
+
* @param {number} servicePlanId Service Plan ID
|
|
11215
|
+
* @param {*} [options] Override http request option.
|
|
11216
|
+
* @throws {RequiredError}
|
|
11217
|
+
*/
|
|
11218
|
+
deleteGetServicePlan: (servicePlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11219
|
+
/**
|
|
11220
|
+
* Get Recurring Charges
|
|
11221
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11222
|
+
* @param {*} [options] Override http request option.
|
|
11223
|
+
* @throws {RequiredError}
|
|
11224
|
+
*/
|
|
11225
|
+
getAddRecurringCharge: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11226
|
+
/**
|
|
11227
|
+
* Get Service
|
|
11228
|
+
* @param {number} id Service ID
|
|
11229
|
+
* @param {*} [options] Override http request option.
|
|
11230
|
+
* @throws {RequiredError}
|
|
11231
|
+
*/
|
|
11232
|
+
getAddServiceToServicePlan: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11233
|
+
/**
|
|
11234
|
+
* Get SIP Trunk DDIs
|
|
11235
|
+
* @param {number} [connectionId] Connection ID
|
|
11236
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11237
|
+
* @param {*} [options] Override http request option.
|
|
11238
|
+
* @throws {RequiredError}
|
|
11239
|
+
*/
|
|
11240
|
+
getAddSipTrunkDDIs: (connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11241
|
+
/**
|
|
11242
|
+
* Connection Search
|
|
11243
|
+
* @param {string} search Search
|
|
11244
|
+
* @param {*} [options] Override http request option.
|
|
11245
|
+
* @throws {RequiredError}
|
|
11246
|
+
*/
|
|
11247
|
+
getConnectionSearch: (search: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11248
|
+
/**
|
|
11249
|
+
* Disconnect Connection
|
|
11250
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
11251
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11252
|
+
* @param {*} [options] Override http request option.
|
|
11253
|
+
* @throws {RequiredError}
|
|
11254
|
+
*/
|
|
11255
|
+
getDisconnectConnection: (getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11256
|
+
/**
|
|
11257
|
+
* Disconnect DDI
|
|
11258
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
11259
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11260
|
+
* @param {*} [options] Override http request option.
|
|
11261
|
+
* @throws {RequiredError}
|
|
11262
|
+
*/
|
|
11263
|
+
getDisconnectDDI: (getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10627
11264
|
/**
|
|
10628
11265
|
* Get Billing Customers
|
|
10629
11266
|
* @summary Get Billing Customers
|
|
@@ -10632,94 +11269,1849 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10632
11269
|
*/
|
|
10633
11270
|
getGetAllCustomer: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10634
11271
|
/**
|
|
10635
|
-
*
|
|
10636
|
-
* @param {
|
|
10637
|
-
* @param {number} [id] Connection ID
|
|
10638
|
-
* @param {string} [cli] CLI
|
|
10639
|
-
* @param {boolean} [skipDDis] Skip DDIs
|
|
11272
|
+
* Get All MT SIP Trunks
|
|
11273
|
+
* @param {number} [billCustomerId] Customer ID
|
|
10640
11274
|
* @param {*} [options] Override http request option.
|
|
10641
11275
|
* @throws {RequiredError}
|
|
10642
11276
|
*/
|
|
10643
|
-
|
|
10644
|
-
};
|
|
10645
|
-
/**
|
|
10646
|
-
* BillingApi - functional programming interface
|
|
10647
|
-
*/
|
|
10648
|
-
export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
11277
|
+
getGetAllMtSipTrunks: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10649
11278
|
/**
|
|
10650
|
-
* Get
|
|
10651
|
-
* @
|
|
11279
|
+
* Get All SIP Trunks
|
|
11280
|
+
* @param {number} [billCustomerId] Customer ID
|
|
10652
11281
|
* @param {*} [options] Override http request option.
|
|
10653
11282
|
* @throws {RequiredError}
|
|
10654
11283
|
*/
|
|
10655
|
-
|
|
10656
|
-
[key: string]: {
|
|
10657
|
-
[key: string]: string;
|
|
10658
|
-
};
|
|
10659
|
-
}>>;
|
|
11284
|
+
getGetAllSipTrunks: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10660
11285
|
/**
|
|
10661
|
-
*
|
|
10662
|
-
* @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
|
|
10663
|
-
* @param {number} [id] Connection ID
|
|
10664
|
-
* @param {string} [cli] CLI
|
|
10665
|
-
* @param {boolean} [skipDDis] Skip DDIs
|
|
11286
|
+
* Get Base Services
|
|
10666
11287
|
* @param {*} [options] Override http request option.
|
|
10667
11288
|
* @throws {RequiredError}
|
|
10668
11289
|
*/
|
|
10669
|
-
|
|
10670
|
-
};
|
|
10671
|
-
/**
|
|
10672
|
-
* BillingApi - factory interface
|
|
10673
|
-
*/
|
|
10674
|
-
export declare const BillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11290
|
+
getGetBaseServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10675
11291
|
/**
|
|
10676
|
-
* Get
|
|
10677
|
-
* @
|
|
11292
|
+
* Get Customer
|
|
11293
|
+
* @param {number} [billCustomerId] Customer ID
|
|
10678
11294
|
* @param {*} [options] Override http request option.
|
|
10679
11295
|
* @throws {RequiredError}
|
|
10680
11296
|
*/
|
|
10681
|
-
|
|
10682
|
-
[key: string]: {
|
|
10683
|
-
[key: string]: string;
|
|
10684
|
-
};
|
|
10685
|
-
}>;
|
|
11297
|
+
getGetBillingCustomerDetails: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10686
11298
|
/**
|
|
10687
|
-
*
|
|
10688
|
-
* @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
|
|
10689
|
-
* @param {number} [id] Connection ID
|
|
10690
|
-
* @param {string} [cli] CLI
|
|
10691
|
-
* @param {boolean} [skipDDis] Skip DDIs
|
|
11299
|
+
* Get Bundle Calls With Cost
|
|
10692
11300
|
* @param {*} [options] Override http request option.
|
|
10693
11301
|
* @throws {RequiredError}
|
|
10694
11302
|
*/
|
|
10695
|
-
|
|
10696
|
-
};
|
|
10697
|
-
/**
|
|
10698
|
-
* BillingApi - object-oriented interface
|
|
10699
|
-
*/
|
|
10700
|
-
export declare class BillingApi extends BaseAPI {
|
|
11303
|
+
getGetBundleCallsWithCost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10701
11304
|
/**
|
|
10702
|
-
* Get
|
|
10703
|
-
* @
|
|
11305
|
+
* Get Call Tariff
|
|
11306
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
10704
11307
|
* @param {*} [options] Override http request option.
|
|
10705
11308
|
* @throws {RequiredError}
|
|
10706
11309
|
*/
|
|
10707
|
-
|
|
10708
|
-
[key: string]: {
|
|
10709
|
-
[key: string]: string;
|
|
10710
|
-
};
|
|
10711
|
-
}, any, {}>>;
|
|
11310
|
+
getGetCallTariffPlan: (callTariffPlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10712
11311
|
/**
|
|
10713
|
-
*
|
|
10714
|
-
* @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
|
|
10715
|
-
* @param {number} [id] Connection ID
|
|
10716
|
-
* @param {string} [cli] CLI
|
|
10717
|
-
* @param {boolean} [skipDDis] Skip DDIs
|
|
11312
|
+
* Get Call Tariffs
|
|
10718
11313
|
* @param {*} [options] Override http request option.
|
|
10719
11314
|
* @throws {RequiredError}
|
|
10720
11315
|
*/
|
|
10721
|
-
|
|
10722
|
-
|
|
11316
|
+
getGetCallTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11317
|
+
/**
|
|
11318
|
+
* Get Call Tariffs Detailed
|
|
11319
|
+
* @param {*} [options] Override http request option.
|
|
11320
|
+
* @throws {RequiredError}
|
|
11321
|
+
*/
|
|
11322
|
+
getGetCallTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11323
|
+
/**
|
|
11324
|
+
* Get Children
|
|
11325
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11326
|
+
* @param {*} [options] Override http request option.
|
|
11327
|
+
* @throws {RequiredError}
|
|
11328
|
+
*/
|
|
11329
|
+
getGetChildren: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11330
|
+
/**
|
|
11331
|
+
* Get Connections
|
|
11332
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
11333
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11334
|
+
* @param {*} [options] Override http request option.
|
|
11335
|
+
* @throws {RequiredError}
|
|
11336
|
+
*/
|
|
11337
|
+
getGetConnections: (type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11338
|
+
/**
|
|
11339
|
+
* Get Customer (Global)
|
|
11340
|
+
* @param {string} [accountId] Account ID
|
|
11341
|
+
* @param {number} [customerId] Customer ID
|
|
11342
|
+
* @param {string} [customerCode] Customer Code
|
|
11343
|
+
* @param {*} [options] Override http request option.
|
|
11344
|
+
* @throws {RequiredError}
|
|
11345
|
+
*/
|
|
11346
|
+
getGetCustomer: (accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11347
|
+
/**
|
|
11348
|
+
* Get Inbound Tariffs
|
|
11349
|
+
* @param {*} [options] Override http request option.
|
|
11350
|
+
* @throws {RequiredError}
|
|
11351
|
+
*/
|
|
11352
|
+
getGetInboundTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11353
|
+
/**
|
|
11354
|
+
* Get Inbound Tariffs Detailed
|
|
11355
|
+
* @param {*} [options] Override http request option.
|
|
11356
|
+
* @throws {RequiredError}
|
|
11357
|
+
*/
|
|
11358
|
+
getGetInboundTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11359
|
+
/**
|
|
11360
|
+
* Get Price Groups
|
|
11361
|
+
* @param {*} [options] Override http request option.
|
|
11362
|
+
* @throws {RequiredError}
|
|
11363
|
+
*/
|
|
11364
|
+
getGetPriceGroups: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11365
|
+
/**
|
|
11366
|
+
* Get Service Plan
|
|
11367
|
+
* @param {number} servicePlanId Service Plan ID
|
|
11368
|
+
* @param {*} [options] Override http request option.
|
|
11369
|
+
* @throws {RequiredError}
|
|
11370
|
+
*/
|
|
11371
|
+
getGetServicePlan: (servicePlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11372
|
+
/**
|
|
11373
|
+
* Get Service Plans
|
|
11374
|
+
* @param {*} [options] Override http request option.
|
|
11375
|
+
* @throws {RequiredError}
|
|
11376
|
+
*/
|
|
11377
|
+
getGetServicePlans: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11378
|
+
/**
|
|
11379
|
+
* Get Service Plans Detailed
|
|
11380
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
11381
|
+
* @param {*} [options] Override http request option.
|
|
11382
|
+
* @throws {RequiredError}
|
|
11383
|
+
*/
|
|
11384
|
+
getGetServicesPlanDetails: (type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11385
|
+
/**
|
|
11386
|
+
* Get SIP Trunk List
|
|
11387
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11388
|
+
* @param {*} [options] Override http request option.
|
|
11389
|
+
* @throws {RequiredError}
|
|
11390
|
+
*/
|
|
11391
|
+
getGetSipTrunkList: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11392
|
+
/**
|
|
11393
|
+
* Get SIP Trunk Billing
|
|
11394
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11395
|
+
* @param {*} [options] Override http request option.
|
|
11396
|
+
* @throws {RequiredError}
|
|
11397
|
+
*/
|
|
11398
|
+
getGetSipTrunksBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11399
|
+
/**
|
|
11400
|
+
* Get Unconnected Calls
|
|
11401
|
+
* @param {*} [options] Override http request option.
|
|
11402
|
+
* @throws {RequiredError}
|
|
11403
|
+
*/
|
|
11404
|
+
getGetUnconnectedCalls: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11405
|
+
/**
|
|
11406
|
+
* Get Unconnected Services
|
|
11407
|
+
* @param {*} [options] Override http request option.
|
|
11408
|
+
* @throws {RequiredError}
|
|
11409
|
+
*/
|
|
11410
|
+
getGetUnconnectedServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11411
|
+
/**
|
|
11412
|
+
* Is Bundle Customer
|
|
11413
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11414
|
+
* @param {*} [options] Override http request option.
|
|
11415
|
+
* @throws {RequiredError}
|
|
11416
|
+
*/
|
|
11417
|
+
getIsBundleCustomer: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11418
|
+
/**
|
|
11419
|
+
* Add Broadband
|
|
11420
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
11421
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11422
|
+
* @param {*} [options] Override http request option.
|
|
11423
|
+
* @throws {RequiredError}
|
|
11424
|
+
*/
|
|
11425
|
+
postAddBroadband: (postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11426
|
+
/**
|
|
11427
|
+
* Add Call Tariff To Call Tariff Plan
|
|
11428
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
11429
|
+
* @param {*} [options] Override http request option.
|
|
11430
|
+
* @throws {RequiredError}
|
|
11431
|
+
*/
|
|
11432
|
+
postAddCallTariffToCallTariffPlan: (postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11433
|
+
/**
|
|
11434
|
+
* Add Child Customer
|
|
11435
|
+
* @param {ContactDetail} contactDetail
|
|
11436
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11437
|
+
* @param {number} [customerId] Child Customer ID
|
|
11438
|
+
* @param {*} [options] Override http request option.
|
|
11439
|
+
* @throws {RequiredError}
|
|
11440
|
+
*/
|
|
11441
|
+
postAddChildCustomer: (contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11442
|
+
/**
|
|
11443
|
+
* Add Ethernet
|
|
11444
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
11445
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11446
|
+
* @param {*} [options] Override http request option.
|
|
11447
|
+
* @throws {RequiredError}
|
|
11448
|
+
*/
|
|
11449
|
+
postAddEthernet: (postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11450
|
+
/**
|
|
11451
|
+
* Add Recurring Charge
|
|
11452
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
11453
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11454
|
+
* @param {*} [options] Override http request option.
|
|
11455
|
+
* @throws {RequiredError}
|
|
11456
|
+
*/
|
|
11457
|
+
postAddRecurringCharge: (postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11458
|
+
/**
|
|
11459
|
+
* Add Service To Service Plan
|
|
11460
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
11461
|
+
* @param {*} [options] Override http request option.
|
|
11462
|
+
* @throws {RequiredError}
|
|
11463
|
+
*/
|
|
11464
|
+
postAddServiceToServicePlan: (postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11465
|
+
/**
|
|
11466
|
+
* Add SIP Trunk DDIs
|
|
11467
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
11468
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11469
|
+
* @param {*} [options] Override http request option.
|
|
11470
|
+
* @throws {RequiredError}
|
|
11471
|
+
*/
|
|
11472
|
+
postAddSipTrunkDDIs: (postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11473
|
+
/**
|
|
11474
|
+
* Add Base Service
|
|
11475
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
11476
|
+
* @param {*} [options] Override http request option.
|
|
11477
|
+
* @throws {RequiredError}
|
|
11478
|
+
*/
|
|
11479
|
+
postGetBaseServices: (postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11480
|
+
/**
|
|
11481
|
+
* Add Call Tariff
|
|
11482
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
11483
|
+
* @param {*} [options] Override http request option.
|
|
11484
|
+
* @throws {RequiredError}
|
|
11485
|
+
*/
|
|
11486
|
+
postGetCallTariffPlan: (putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11487
|
+
/**
|
|
11488
|
+
* Add Connection
|
|
11489
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11490
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
11491
|
+
* @param {*} [options] Override http request option.
|
|
11492
|
+
* @throws {RequiredError}
|
|
11493
|
+
*/
|
|
11494
|
+
postGetConnections: (billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11495
|
+
/**
|
|
11496
|
+
* Add Price Group
|
|
11497
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
11498
|
+
* @param {*} [options] Override http request option.
|
|
11499
|
+
* @throws {RequiredError}
|
|
11500
|
+
*/
|
|
11501
|
+
postGetPriceGroups: (postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11502
|
+
/**
|
|
11503
|
+
* Add Service Plan
|
|
11504
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
11505
|
+
* @param {*} [options] Override http request option.
|
|
11506
|
+
* @throws {RequiredError}
|
|
11507
|
+
*/
|
|
11508
|
+
postGetServicePlans: (postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11509
|
+
/**
|
|
11510
|
+
* Add SIP Trunk billing
|
|
11511
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
11512
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11513
|
+
* @param {*} [options] Override http request option.
|
|
11514
|
+
* @throws {RequiredError}
|
|
11515
|
+
*/
|
|
11516
|
+
postGetSipTrunksBilling: (postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11517
|
+
/**
|
|
11518
|
+
* Send Invoices
|
|
11519
|
+
* @param {*} [options] Override http request option.
|
|
11520
|
+
* @throws {RequiredError}
|
|
11521
|
+
*/
|
|
11522
|
+
postSendInvoices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11523
|
+
/**
|
|
11524
|
+
* Update Connection
|
|
11525
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
11526
|
+
* @param {number} [connectionId] Connection ID
|
|
11527
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11528
|
+
* @param {*} [options] Override http request option.
|
|
11529
|
+
* @throws {RequiredError}
|
|
11530
|
+
*/
|
|
11531
|
+
postUpdateConnection: (postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11532
|
+
/**
|
|
11533
|
+
* Update Recurring Charge
|
|
11534
|
+
* @param {number} id Recurring Charge ID
|
|
11535
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
11536
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11537
|
+
* @param {*} [options] Override http request option.
|
|
11538
|
+
* @throws {RequiredError}
|
|
11539
|
+
*/
|
|
11540
|
+
postUpdateRecurringCharge: (id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11541
|
+
/**
|
|
11542
|
+
* Update Call Tariff
|
|
11543
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
11544
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
11545
|
+
* @param {*} [options] Override http request option.
|
|
11546
|
+
* @throws {RequiredError}
|
|
11547
|
+
*/
|
|
11548
|
+
putAddCallTariffToCallTariffPlan: (callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11549
|
+
/**
|
|
11550
|
+
* Update Service
|
|
11551
|
+
* @param {number} id Service ID
|
|
11552
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
11553
|
+
* @param {*} [options] Override http request option.
|
|
11554
|
+
* @throws {RequiredError}
|
|
11555
|
+
*/
|
|
11556
|
+
putAddServiceToServicePlan: (id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11557
|
+
/**
|
|
11558
|
+
* Transfer Billing Connection
|
|
11559
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
11560
|
+
* @param {number} [id] Connection ID
|
|
11561
|
+
* @param {string} [cli] CLI
|
|
11562
|
+
* @param {boolean} [skipDDis] Skip DDIs
|
|
11563
|
+
* @param {*} [options] Override http request option.
|
|
11564
|
+
* @throws {RequiredError}
|
|
11565
|
+
*/
|
|
11566
|
+
putConnectionSearch: (putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11567
|
+
/**
|
|
11568
|
+
* Convert Child To Parent
|
|
11569
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11570
|
+
* @param {*} [options] Override http request option.
|
|
11571
|
+
* @throws {RequiredError}
|
|
11572
|
+
*/
|
|
11573
|
+
putConvertChildToParent: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11574
|
+
/**
|
|
11575
|
+
* Disable Bundles
|
|
11576
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11577
|
+
* @param {*} [options] Override http request option.
|
|
11578
|
+
* @throws {RequiredError}
|
|
11579
|
+
*/
|
|
11580
|
+
putDisableBundles: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11581
|
+
/**
|
|
11582
|
+
* Disable DDI Billing
|
|
11583
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11584
|
+
* @param {*} [options] Override http request option.
|
|
11585
|
+
* @throws {RequiredError}
|
|
11586
|
+
*/
|
|
11587
|
+
putDisableDdiBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11588
|
+
/**
|
|
11589
|
+
* Enable Bundles
|
|
11590
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11591
|
+
* @param {*} [options] Override http request option.
|
|
11592
|
+
* @throws {RequiredError}
|
|
11593
|
+
*/
|
|
11594
|
+
putEnableBundles: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11595
|
+
/**
|
|
11596
|
+
* Enable DDI Billing
|
|
11597
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11598
|
+
* @param {*} [options] Override http request option.
|
|
11599
|
+
* @throws {RequiredError}
|
|
11600
|
+
*/
|
|
11601
|
+
putEnableDdiBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11602
|
+
/**
|
|
11603
|
+
* Update Base Service
|
|
11604
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
11605
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
11606
|
+
* @param {*} [options] Override http request option.
|
|
11607
|
+
* @throws {RequiredError}
|
|
11608
|
+
*/
|
|
11609
|
+
putGetBaseServices: (baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11610
|
+
/**
|
|
11611
|
+
* Update Call Tariff
|
|
11612
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
11613
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
11614
|
+
* @param {*} [options] Override http request option.
|
|
11615
|
+
* @throws {RequiredError}
|
|
11616
|
+
*/
|
|
11617
|
+
putGetCallTariffPlan: (callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11618
|
+
/**
|
|
11619
|
+
* Update Connection
|
|
11620
|
+
* @param {number} connectionId Connection ID
|
|
11621
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11622
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
11623
|
+
* @param {*} [options] Override http request option.
|
|
11624
|
+
* @throws {RequiredError}
|
|
11625
|
+
*/
|
|
11626
|
+
putGetConnections: (connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11627
|
+
/**
|
|
11628
|
+
* Update Price Group
|
|
11629
|
+
* @param {number} priceGroupId Price Group ID
|
|
11630
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
11631
|
+
* @param {*} [options] Override http request option.
|
|
11632
|
+
* @throws {RequiredError}
|
|
11633
|
+
*/
|
|
11634
|
+
putGetPriceGroups: (priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11635
|
+
};
|
|
11636
|
+
/**
|
|
11637
|
+
* BillingApi - functional programming interface
|
|
11638
|
+
*/
|
|
11639
|
+
export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
11640
|
+
/**
|
|
11641
|
+
* Delete Call Tariff
|
|
11642
|
+
* @param {string} priceGroupName Price Group Name
|
|
11643
|
+
* @param {*} [options] Override http request option.
|
|
11644
|
+
* @throws {RequiredError}
|
|
11645
|
+
*/
|
|
11646
|
+
deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
11647
|
+
/**
|
|
11648
|
+
* Delete Recurring Charges
|
|
11649
|
+
* @param {number} id Recurring Charge ID
|
|
11650
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11651
|
+
* @param {*} [options] Override http request option.
|
|
11652
|
+
* @throws {RequiredError}
|
|
11653
|
+
*/
|
|
11654
|
+
deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
11655
|
+
/**
|
|
11656
|
+
* Delete Service
|
|
11657
|
+
* @param {string} planGroup Plan Group
|
|
11658
|
+
* @param {string} serviceCode Service Code
|
|
11659
|
+
* @param {*} [options] Override http request option.
|
|
11660
|
+
* @throws {RequiredError}
|
|
11661
|
+
*/
|
|
11662
|
+
deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
11663
|
+
/**
|
|
11664
|
+
* Delete Customer
|
|
11665
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11666
|
+
* @param {*} [options] Override http request option.
|
|
11667
|
+
* @throws {RequiredError}
|
|
11668
|
+
*/
|
|
11669
|
+
deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
11670
|
+
/**
|
|
11671
|
+
* Delete Base Service
|
|
11672
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
11673
|
+
* @param {*} [options] Override http request option.
|
|
11674
|
+
* @throws {RequiredError}
|
|
11675
|
+
*/
|
|
11676
|
+
deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
11677
|
+
/**
|
|
11678
|
+
* Delete Call Tariff Plan
|
|
11679
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
11680
|
+
* @param {*} [options] Override http request option.
|
|
11681
|
+
* @throws {RequiredError}
|
|
11682
|
+
*/
|
|
11683
|
+
deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
11684
|
+
/**
|
|
11685
|
+
* Delete Price Group
|
|
11686
|
+
* @param {number} priceGroupId Price Group ID
|
|
11687
|
+
* @param {*} [options] Override http request option.
|
|
11688
|
+
* @throws {RequiredError}
|
|
11689
|
+
*/
|
|
11690
|
+
deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
11691
|
+
/**
|
|
11692
|
+
* Delete Service Plan
|
|
11693
|
+
* @param {number} servicePlanId Service Plan ID
|
|
11694
|
+
* @param {*} [options] Override http request option.
|
|
11695
|
+
* @throws {RequiredError}
|
|
11696
|
+
*/
|
|
11697
|
+
deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
11698
|
+
/**
|
|
11699
|
+
* Get Recurring Charges
|
|
11700
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11701
|
+
* @param {*} [options] Override http request option.
|
|
11702
|
+
* @throws {RequiredError}
|
|
11703
|
+
*/
|
|
11704
|
+
getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RecurringCharge>>>;
|
|
11705
|
+
/**
|
|
11706
|
+
* Get Service
|
|
11707
|
+
* @param {number} id Service ID
|
|
11708
|
+
* @param {*} [options] Override http request option.
|
|
11709
|
+
* @throws {RequiredError}
|
|
11710
|
+
*/
|
|
11711
|
+
getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
11712
|
+
/**
|
|
11713
|
+
* Get SIP Trunk DDIs
|
|
11714
|
+
* @param {number} [connectionId] Connection ID
|
|
11715
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11716
|
+
* @param {*} [options] Override http request option.
|
|
11717
|
+
* @throws {RequiredError}
|
|
11718
|
+
*/
|
|
11719
|
+
getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
11720
|
+
/**
|
|
11721
|
+
* Connection Search
|
|
11722
|
+
* @param {string} search Search
|
|
11723
|
+
* @param {*} [options] Override http request option.
|
|
11724
|
+
* @throws {RequiredError}
|
|
11725
|
+
*/
|
|
11726
|
+
getConnectionSearch(search: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
11727
|
+
/**
|
|
11728
|
+
* Disconnect Connection
|
|
11729
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
11730
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11731
|
+
* @param {*} [options] Override http request option.
|
|
11732
|
+
* @throws {RequiredError}
|
|
11733
|
+
*/
|
|
11734
|
+
getDisconnectConnection(getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
11735
|
+
/**
|
|
11736
|
+
* Disconnect DDI
|
|
11737
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
11738
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11739
|
+
* @param {*} [options] Override http request option.
|
|
11740
|
+
* @throws {RequiredError}
|
|
11741
|
+
*/
|
|
11742
|
+
getDisconnectDDI(getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
11743
|
+
/**
|
|
11744
|
+
* Get Billing Customers
|
|
11745
|
+
* @summary Get Billing Customers
|
|
11746
|
+
* @param {*} [options] Override http request option.
|
|
11747
|
+
* @throws {RequiredError}
|
|
11748
|
+
*/
|
|
11749
|
+
getGetAllCustomer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
11750
|
+
[key: string]: {
|
|
11751
|
+
[key: string]: string;
|
|
11752
|
+
};
|
|
11753
|
+
}>>;
|
|
11754
|
+
/**
|
|
11755
|
+
* Get All MT SIP Trunks
|
|
11756
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11757
|
+
* @param {*} [options] Override http request option.
|
|
11758
|
+
* @throws {RequiredError}
|
|
11759
|
+
*/
|
|
11760
|
+
getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
|
|
11761
|
+
/**
|
|
11762
|
+
* Get All SIP Trunks
|
|
11763
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11764
|
+
* @param {*} [options] Override http request option.
|
|
11765
|
+
* @throws {RequiredError}
|
|
11766
|
+
*/
|
|
11767
|
+
getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
|
|
11768
|
+
/**
|
|
11769
|
+
* Get Base Services
|
|
11770
|
+
* @param {*} [options] Override http request option.
|
|
11771
|
+
* @throws {RequiredError}
|
|
11772
|
+
*/
|
|
11773
|
+
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseService>>>;
|
|
11774
|
+
/**
|
|
11775
|
+
* Get Customer
|
|
11776
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11777
|
+
* @param {*} [options] Override http request option.
|
|
11778
|
+
* @throws {RequiredError}
|
|
11779
|
+
*/
|
|
11780
|
+
getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
11781
|
+
/**
|
|
11782
|
+
* Get Bundle Calls With Cost
|
|
11783
|
+
* @param {*} [options] Override http request option.
|
|
11784
|
+
* @throws {RequiredError}
|
|
11785
|
+
*/
|
|
11786
|
+
getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
|
|
11787
|
+
/**
|
|
11788
|
+
* Get Call Tariff
|
|
11789
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
11790
|
+
* @param {*} [options] Override http request option.
|
|
11791
|
+
* @throws {RequiredError}
|
|
11792
|
+
*/
|
|
11793
|
+
getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
11794
|
+
/**
|
|
11795
|
+
* Get Call Tariffs
|
|
11796
|
+
* @param {*} [options] Override http request option.
|
|
11797
|
+
* @throws {RequiredError}
|
|
11798
|
+
*/
|
|
11799
|
+
getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
|
|
11800
|
+
/**
|
|
11801
|
+
* Get Call Tariffs Detailed
|
|
11802
|
+
* @param {*} [options] Override http request option.
|
|
11803
|
+
* @throws {RequiredError}
|
|
11804
|
+
*/
|
|
11805
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
|
|
11806
|
+
/**
|
|
11807
|
+
* Get Children
|
|
11808
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11809
|
+
* @param {*} [options] Override http request option.
|
|
11810
|
+
* @throws {RequiredError}
|
|
11811
|
+
*/
|
|
11812
|
+
getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
|
|
11813
|
+
/**
|
|
11814
|
+
* Get Connections
|
|
11815
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
11816
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11817
|
+
* @param {*} [options] Override http request option.
|
|
11818
|
+
* @throws {RequiredError}
|
|
11819
|
+
*/
|
|
11820
|
+
getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
11821
|
+
/**
|
|
11822
|
+
* Get Customer (Global)
|
|
11823
|
+
* @param {string} [accountId] Account ID
|
|
11824
|
+
* @param {number} [customerId] Customer ID
|
|
11825
|
+
* @param {string} [customerCode] Customer Code
|
|
11826
|
+
* @param {*} [options] Override http request option.
|
|
11827
|
+
* @throws {RequiredError}
|
|
11828
|
+
*/
|
|
11829
|
+
getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
11830
|
+
/**
|
|
11831
|
+
* Get Inbound Tariffs
|
|
11832
|
+
* @param {*} [options] Override http request option.
|
|
11833
|
+
* @throws {RequiredError}
|
|
11834
|
+
*/
|
|
11835
|
+
getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
11836
|
+
/**
|
|
11837
|
+
* Get Inbound Tariffs Detailed
|
|
11838
|
+
* @param {*} [options] Override http request option.
|
|
11839
|
+
* @throws {RequiredError}
|
|
11840
|
+
*/
|
|
11841
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InboundTariffPlanResponse>>>;
|
|
11842
|
+
/**
|
|
11843
|
+
* Get Price Groups
|
|
11844
|
+
* @param {*} [options] Override http request option.
|
|
11845
|
+
* @throws {RequiredError}
|
|
11846
|
+
*/
|
|
11847
|
+
getGetPriceGroups(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PriceGroup>>>;
|
|
11848
|
+
/**
|
|
11849
|
+
* Get Service Plan
|
|
11850
|
+
* @param {number} servicePlanId Service Plan ID
|
|
11851
|
+
* @param {*} [options] Override http request option.
|
|
11852
|
+
* @throws {RequiredError}
|
|
11853
|
+
*/
|
|
11854
|
+
getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServicePlan>>;
|
|
11855
|
+
/**
|
|
11856
|
+
* Get Service Plans
|
|
11857
|
+
* @param {*} [options] Override http request option.
|
|
11858
|
+
* @throws {RequiredError}
|
|
11859
|
+
*/
|
|
11860
|
+
getGetServicePlans(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
|
|
11861
|
+
/**
|
|
11862
|
+
* Get Service Plans Detailed
|
|
11863
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
11864
|
+
* @param {*} [options] Override http request option.
|
|
11865
|
+
* @throws {RequiredError}
|
|
11866
|
+
*/
|
|
11867
|
+
getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
|
|
11868
|
+
/**
|
|
11869
|
+
* Get SIP Trunk List
|
|
11870
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11871
|
+
* @param {*} [options] Override http request option.
|
|
11872
|
+
* @throws {RequiredError}
|
|
11873
|
+
*/
|
|
11874
|
+
getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
|
|
11875
|
+
/**
|
|
11876
|
+
* Get SIP Trunk Billing
|
|
11877
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11878
|
+
* @param {*} [options] Override http request option.
|
|
11879
|
+
* @throws {RequiredError}
|
|
11880
|
+
*/
|
|
11881
|
+
getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
11882
|
+
/**
|
|
11883
|
+
* Get Unconnected Calls
|
|
11884
|
+
* @param {*} [options] Override http request option.
|
|
11885
|
+
* @throws {RequiredError}
|
|
11886
|
+
*/
|
|
11887
|
+
getGetUnconnectedCalls(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
|
|
11888
|
+
/**
|
|
11889
|
+
* Get Unconnected Services
|
|
11890
|
+
* @param {*} [options] Override http request option.
|
|
11891
|
+
* @throws {RequiredError}
|
|
11892
|
+
*/
|
|
11893
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
|
|
11894
|
+
/**
|
|
11895
|
+
* Is Bundle Customer
|
|
11896
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11897
|
+
* @param {*} [options] Override http request option.
|
|
11898
|
+
* @throws {RequiredError}
|
|
11899
|
+
*/
|
|
11900
|
+
getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
11901
|
+
/**
|
|
11902
|
+
* Add Broadband
|
|
11903
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
11904
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11905
|
+
* @param {*} [options] Override http request option.
|
|
11906
|
+
* @throws {RequiredError}
|
|
11907
|
+
*/
|
|
11908
|
+
postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
11909
|
+
/**
|
|
11910
|
+
* Add Call Tariff To Call Tariff Plan
|
|
11911
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
11912
|
+
* @param {*} [options] Override http request option.
|
|
11913
|
+
* @throws {RequiredError}
|
|
11914
|
+
*/
|
|
11915
|
+
postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
11916
|
+
/**
|
|
11917
|
+
* Add Child Customer
|
|
11918
|
+
* @param {ContactDetail} contactDetail
|
|
11919
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11920
|
+
* @param {number} [customerId] Child Customer ID
|
|
11921
|
+
* @param {*} [options] Override http request option.
|
|
11922
|
+
* @throws {RequiredError}
|
|
11923
|
+
*/
|
|
11924
|
+
postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
11925
|
+
/**
|
|
11926
|
+
* Add Ethernet
|
|
11927
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
11928
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11929
|
+
* @param {*} [options] Override http request option.
|
|
11930
|
+
* @throws {RequiredError}
|
|
11931
|
+
*/
|
|
11932
|
+
postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
11933
|
+
/**
|
|
11934
|
+
* Add Recurring Charge
|
|
11935
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
11936
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11937
|
+
* @param {*} [options] Override http request option.
|
|
11938
|
+
* @throws {RequiredError}
|
|
11939
|
+
*/
|
|
11940
|
+
postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecurringCharge>>;
|
|
11941
|
+
/**
|
|
11942
|
+
* Add Service To Service Plan
|
|
11943
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
11944
|
+
* @param {*} [options] Override http request option.
|
|
11945
|
+
* @throws {RequiredError}
|
|
11946
|
+
*/
|
|
11947
|
+
postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
11948
|
+
/**
|
|
11949
|
+
* Add SIP Trunk DDIs
|
|
11950
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
11951
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11952
|
+
* @param {*} [options] Override http request option.
|
|
11953
|
+
* @throws {RequiredError}
|
|
11954
|
+
*/
|
|
11955
|
+
postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
11956
|
+
/**
|
|
11957
|
+
* Add Base Service
|
|
11958
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
11959
|
+
* @param {*} [options] Override http request option.
|
|
11960
|
+
* @throws {RequiredError}
|
|
11961
|
+
*/
|
|
11962
|
+
postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
11963
|
+
/**
|
|
11964
|
+
* Add Call Tariff
|
|
11965
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
11966
|
+
* @param {*} [options] Override http request option.
|
|
11967
|
+
* @throws {RequiredError}
|
|
11968
|
+
*/
|
|
11969
|
+
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
11970
|
+
/**
|
|
11971
|
+
* Add Connection
|
|
11972
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11973
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
11974
|
+
* @param {*} [options] Override http request option.
|
|
11975
|
+
* @throws {RequiredError}
|
|
11976
|
+
*/
|
|
11977
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
11978
|
+
/**
|
|
11979
|
+
* Add Price Group
|
|
11980
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
11981
|
+
* @param {*} [options] Override http request option.
|
|
11982
|
+
* @throws {RequiredError}
|
|
11983
|
+
*/
|
|
11984
|
+
postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PriceGroup>>;
|
|
11985
|
+
/**
|
|
11986
|
+
* Add Service Plan
|
|
11987
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
11988
|
+
* @param {*} [options] Override http request option.
|
|
11989
|
+
* @throws {RequiredError}
|
|
11990
|
+
*/
|
|
11991
|
+
postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServicePlan>>;
|
|
11992
|
+
/**
|
|
11993
|
+
* Add SIP Trunk billing
|
|
11994
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
11995
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11996
|
+
* @param {*} [options] Override http request option.
|
|
11997
|
+
* @throws {RequiredError}
|
|
11998
|
+
*/
|
|
11999
|
+
postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12000
|
+
/**
|
|
12001
|
+
* Send Invoices
|
|
12002
|
+
* @param {*} [options] Override http request option.
|
|
12003
|
+
* @throws {RequiredError}
|
|
12004
|
+
*/
|
|
12005
|
+
postSendInvoices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
12006
|
+
/**
|
|
12007
|
+
* Update Connection
|
|
12008
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
12009
|
+
* @param {number} [connectionId] Connection ID
|
|
12010
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12011
|
+
* @param {*} [options] Override http request option.
|
|
12012
|
+
* @throws {RequiredError}
|
|
12013
|
+
*/
|
|
12014
|
+
postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
12015
|
+
/**
|
|
12016
|
+
* Update Recurring Charge
|
|
12017
|
+
* @param {number} id Recurring Charge ID
|
|
12018
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
12019
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12020
|
+
* @param {*} [options] Override http request option.
|
|
12021
|
+
* @throws {RequiredError}
|
|
12022
|
+
*/
|
|
12023
|
+
postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecurringCharge>>;
|
|
12024
|
+
/**
|
|
12025
|
+
* Update Call Tariff
|
|
12026
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
12027
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
12028
|
+
* @param {*} [options] Override http request option.
|
|
12029
|
+
* @throws {RequiredError}
|
|
12030
|
+
*/
|
|
12031
|
+
putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
12032
|
+
/**
|
|
12033
|
+
* Update Service
|
|
12034
|
+
* @param {number} id Service ID
|
|
12035
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
12036
|
+
* @param {*} [options] Override http request option.
|
|
12037
|
+
* @throws {RequiredError}
|
|
12038
|
+
*/
|
|
12039
|
+
putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
12040
|
+
/**
|
|
12041
|
+
* Transfer Billing Connection
|
|
12042
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
12043
|
+
* @param {number} [id] Connection ID
|
|
12044
|
+
* @param {string} [cli] CLI
|
|
12045
|
+
* @param {boolean} [skipDDis] Skip DDIs
|
|
12046
|
+
* @param {*} [options] Override http request option.
|
|
12047
|
+
* @throws {RequiredError}
|
|
12048
|
+
*/
|
|
12049
|
+
putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12050
|
+
/**
|
|
12051
|
+
* Convert Child To Parent
|
|
12052
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12053
|
+
* @param {*} [options] Override http request option.
|
|
12054
|
+
* @throws {RequiredError}
|
|
12055
|
+
*/
|
|
12056
|
+
putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
12057
|
+
/**
|
|
12058
|
+
* Disable Bundles
|
|
12059
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12060
|
+
* @param {*} [options] Override http request option.
|
|
12061
|
+
* @throws {RequiredError}
|
|
12062
|
+
*/
|
|
12063
|
+
putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12064
|
+
/**
|
|
12065
|
+
* Disable DDI Billing
|
|
12066
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12067
|
+
* @param {*} [options] Override http request option.
|
|
12068
|
+
* @throws {RequiredError}
|
|
12069
|
+
*/
|
|
12070
|
+
putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12071
|
+
/**
|
|
12072
|
+
* Enable Bundles
|
|
12073
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12074
|
+
* @param {*} [options] Override http request option.
|
|
12075
|
+
* @throws {RequiredError}
|
|
12076
|
+
*/
|
|
12077
|
+
putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12078
|
+
/**
|
|
12079
|
+
* Enable DDI Billing
|
|
12080
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12081
|
+
* @param {*} [options] Override http request option.
|
|
12082
|
+
* @throws {RequiredError}
|
|
12083
|
+
*/
|
|
12084
|
+
putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12085
|
+
/**
|
|
12086
|
+
* Update Base Service
|
|
12087
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
12088
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
12089
|
+
* @param {*} [options] Override http request option.
|
|
12090
|
+
* @throws {RequiredError}
|
|
12091
|
+
*/
|
|
12092
|
+
putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BaseService>>;
|
|
12093
|
+
/**
|
|
12094
|
+
* Update Call Tariff
|
|
12095
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12096
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12097
|
+
* @param {*} [options] Override http request option.
|
|
12098
|
+
* @throws {RequiredError}
|
|
12099
|
+
*/
|
|
12100
|
+
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
12101
|
+
/**
|
|
12102
|
+
* Update Connection
|
|
12103
|
+
* @param {number} connectionId Connection ID
|
|
12104
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12105
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
12106
|
+
* @param {*} [options] Override http request option.
|
|
12107
|
+
* @throws {RequiredError}
|
|
12108
|
+
*/
|
|
12109
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12110
|
+
/**
|
|
12111
|
+
* Update Price Group
|
|
12112
|
+
* @param {number} priceGroupId Price Group ID
|
|
12113
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
12114
|
+
* @param {*} [options] Override http request option.
|
|
12115
|
+
* @throws {RequiredError}
|
|
12116
|
+
*/
|
|
12117
|
+
putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PriceGroup>>;
|
|
12118
|
+
};
|
|
12119
|
+
/**
|
|
12120
|
+
* BillingApi - factory interface
|
|
12121
|
+
*/
|
|
12122
|
+
export declare const BillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12123
|
+
/**
|
|
12124
|
+
* Delete Call Tariff
|
|
12125
|
+
* @param {string} priceGroupName Price Group Name
|
|
12126
|
+
* @param {*} [options] Override http request option.
|
|
12127
|
+
* @throws {RequiredError}
|
|
12128
|
+
*/
|
|
12129
|
+
deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12130
|
+
/**
|
|
12131
|
+
* Delete Recurring Charges
|
|
12132
|
+
* @param {number} id Recurring Charge ID
|
|
12133
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12134
|
+
* @param {*} [options] Override http request option.
|
|
12135
|
+
* @throws {RequiredError}
|
|
12136
|
+
*/
|
|
12137
|
+
deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
12138
|
+
/**
|
|
12139
|
+
* Delete Service
|
|
12140
|
+
* @param {string} planGroup Plan Group
|
|
12141
|
+
* @param {string} serviceCode Service Code
|
|
12142
|
+
* @param {*} [options] Override http request option.
|
|
12143
|
+
* @throws {RequiredError}
|
|
12144
|
+
*/
|
|
12145
|
+
deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12146
|
+
/**
|
|
12147
|
+
* Delete Customer
|
|
12148
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12149
|
+
* @param {*} [options] Override http request option.
|
|
12150
|
+
* @throws {RequiredError}
|
|
12151
|
+
*/
|
|
12152
|
+
deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
12153
|
+
/**
|
|
12154
|
+
* Delete Base Service
|
|
12155
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
12156
|
+
* @param {*} [options] Override http request option.
|
|
12157
|
+
* @throws {RequiredError}
|
|
12158
|
+
*/
|
|
12159
|
+
deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12160
|
+
/**
|
|
12161
|
+
* Delete Call Tariff Plan
|
|
12162
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12163
|
+
* @param {*} [options] Override http request option.
|
|
12164
|
+
* @throws {RequiredError}
|
|
12165
|
+
*/
|
|
12166
|
+
deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12167
|
+
/**
|
|
12168
|
+
* Delete Price Group
|
|
12169
|
+
* @param {number} priceGroupId Price Group ID
|
|
12170
|
+
* @param {*} [options] Override http request option.
|
|
12171
|
+
* @throws {RequiredError}
|
|
12172
|
+
*/
|
|
12173
|
+
deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12174
|
+
/**
|
|
12175
|
+
* Delete Service Plan
|
|
12176
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12177
|
+
* @param {*} [options] Override http request option.
|
|
12178
|
+
* @throws {RequiredError}
|
|
12179
|
+
*/
|
|
12180
|
+
deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
12181
|
+
/**
|
|
12182
|
+
* Get Recurring Charges
|
|
12183
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12184
|
+
* @param {*} [options] Override http request option.
|
|
12185
|
+
* @throws {RequiredError}
|
|
12186
|
+
*/
|
|
12187
|
+
getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<RecurringCharge>>;
|
|
12188
|
+
/**
|
|
12189
|
+
* Get Service
|
|
12190
|
+
* @param {number} id Service ID
|
|
12191
|
+
* @param {*} [options] Override http request option.
|
|
12192
|
+
* @throws {RequiredError}
|
|
12193
|
+
*/
|
|
12194
|
+
getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
12195
|
+
/**
|
|
12196
|
+
* Get SIP Trunk DDIs
|
|
12197
|
+
* @param {number} [connectionId] Connection ID
|
|
12198
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12199
|
+
* @param {*} [options] Override http request option.
|
|
12200
|
+
* @throws {RequiredError}
|
|
12201
|
+
*/
|
|
12202
|
+
getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
12203
|
+
/**
|
|
12204
|
+
* Connection Search
|
|
12205
|
+
* @param {string} search Search
|
|
12206
|
+
* @param {*} [options] Override http request option.
|
|
12207
|
+
* @throws {RequiredError}
|
|
12208
|
+
*/
|
|
12209
|
+
getConnectionSearch(search: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
12210
|
+
/**
|
|
12211
|
+
* Disconnect Connection
|
|
12212
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
12213
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12214
|
+
* @param {*} [options] Override http request option.
|
|
12215
|
+
* @throws {RequiredError}
|
|
12216
|
+
*/
|
|
12217
|
+
getDisconnectConnection(getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
12218
|
+
/**
|
|
12219
|
+
* Disconnect DDI
|
|
12220
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
12221
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12222
|
+
* @param {*} [options] Override http request option.
|
|
12223
|
+
* @throws {RequiredError}
|
|
12224
|
+
*/
|
|
12225
|
+
getDisconnectDDI(getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
12226
|
+
/**
|
|
12227
|
+
* Get Billing Customers
|
|
12228
|
+
* @summary Get Billing Customers
|
|
12229
|
+
* @param {*} [options] Override http request option.
|
|
12230
|
+
* @throws {RequiredError}
|
|
12231
|
+
*/
|
|
12232
|
+
getGetAllCustomer(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
12233
|
+
[key: string]: {
|
|
12234
|
+
[key: string]: string;
|
|
12235
|
+
};
|
|
12236
|
+
}>;
|
|
12237
|
+
/**
|
|
12238
|
+
* Get All MT SIP Trunks
|
|
12239
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12240
|
+
* @param {*} [options] Override http request option.
|
|
12241
|
+
* @throws {RequiredError}
|
|
12242
|
+
*/
|
|
12243
|
+
getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
|
|
12244
|
+
/**
|
|
12245
|
+
* Get All SIP Trunks
|
|
12246
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12247
|
+
* @param {*} [options] Override http request option.
|
|
12248
|
+
* @throws {RequiredError}
|
|
12249
|
+
*/
|
|
12250
|
+
getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
|
|
12251
|
+
/**
|
|
12252
|
+
* Get Base Services
|
|
12253
|
+
* @param {*} [options] Override http request option.
|
|
12254
|
+
* @throws {RequiredError}
|
|
12255
|
+
*/
|
|
12256
|
+
getGetBaseServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseService>>;
|
|
12257
|
+
/**
|
|
12258
|
+
* Get Customer
|
|
12259
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12260
|
+
* @param {*} [options] Override http request option.
|
|
12261
|
+
* @throws {RequiredError}
|
|
12262
|
+
*/
|
|
12263
|
+
getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
12264
|
+
/**
|
|
12265
|
+
* Get Bundle Calls With Cost
|
|
12266
|
+
* @param {*} [options] Override http request option.
|
|
12267
|
+
* @throws {RequiredError}
|
|
12268
|
+
*/
|
|
12269
|
+
getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
|
|
12270
|
+
/**
|
|
12271
|
+
* Get Call Tariff
|
|
12272
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12273
|
+
* @param {*} [options] Override http request option.
|
|
12274
|
+
* @throws {RequiredError}
|
|
12275
|
+
*/
|
|
12276
|
+
getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
12277
|
+
/**
|
|
12278
|
+
* Get Call Tariffs
|
|
12279
|
+
* @param {*} [options] Override http request option.
|
|
12280
|
+
* @throws {RequiredError}
|
|
12281
|
+
*/
|
|
12282
|
+
getGetCallTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
|
|
12283
|
+
/**
|
|
12284
|
+
* Get Call Tariffs Detailed
|
|
12285
|
+
* @param {*} [options] Override http request option.
|
|
12286
|
+
* @throws {RequiredError}
|
|
12287
|
+
*/
|
|
12288
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
|
|
12289
|
+
/**
|
|
12290
|
+
* Get Children
|
|
12291
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12292
|
+
* @param {*} [options] Override http request option.
|
|
12293
|
+
* @throws {RequiredError}
|
|
12294
|
+
*/
|
|
12295
|
+
getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
12296
|
+
/**
|
|
12297
|
+
* Get Connections
|
|
12298
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
12299
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12300
|
+
* @param {*} [options] Override http request option.
|
|
12301
|
+
* @throws {RequiredError}
|
|
12302
|
+
*/
|
|
12303
|
+
getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
12304
|
+
/**
|
|
12305
|
+
* Get Customer (Global)
|
|
12306
|
+
* @param {string} [accountId] Account ID
|
|
12307
|
+
* @param {number} [customerId] Customer ID
|
|
12308
|
+
* @param {string} [customerCode] Customer Code
|
|
12309
|
+
* @param {*} [options] Override http request option.
|
|
12310
|
+
* @throws {RequiredError}
|
|
12311
|
+
*/
|
|
12312
|
+
getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
12313
|
+
/**
|
|
12314
|
+
* Get Inbound Tariffs
|
|
12315
|
+
* @param {*} [options] Override http request option.
|
|
12316
|
+
* @throws {RequiredError}
|
|
12317
|
+
*/
|
|
12318
|
+
getGetInboundTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
12319
|
+
/**
|
|
12320
|
+
* Get Inbound Tariffs Detailed
|
|
12321
|
+
* @param {*} [options] Override http request option.
|
|
12322
|
+
* @throws {RequiredError}
|
|
12323
|
+
*/
|
|
12324
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<InboundTariffPlanResponse>>;
|
|
12325
|
+
/**
|
|
12326
|
+
* Get Price Groups
|
|
12327
|
+
* @param {*} [options] Override http request option.
|
|
12328
|
+
* @throws {RequiredError}
|
|
12329
|
+
*/
|
|
12330
|
+
getGetPriceGroups(options?: RawAxiosRequestConfig): AxiosPromise<Array<PriceGroup>>;
|
|
12331
|
+
/**
|
|
12332
|
+
* Get Service Plan
|
|
12333
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12334
|
+
* @param {*} [options] Override http request option.
|
|
12335
|
+
* @throws {RequiredError}
|
|
12336
|
+
*/
|
|
12337
|
+
getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<ServicePlan>;
|
|
12338
|
+
/**
|
|
12339
|
+
* Get Service Plans
|
|
12340
|
+
* @param {*} [options] Override http request option.
|
|
12341
|
+
* @throws {RequiredError}
|
|
12342
|
+
*/
|
|
12343
|
+
getGetServicePlans(options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
|
|
12344
|
+
/**
|
|
12345
|
+
* Get Service Plans Detailed
|
|
12346
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
12347
|
+
* @param {*} [options] Override http request option.
|
|
12348
|
+
* @throws {RequiredError}
|
|
12349
|
+
*/
|
|
12350
|
+
getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
|
|
12351
|
+
/**
|
|
12352
|
+
* Get SIP Trunk List
|
|
12353
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12354
|
+
* @param {*} [options] Override http request option.
|
|
12355
|
+
* @throws {RequiredError}
|
|
12356
|
+
*/
|
|
12357
|
+
getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
|
|
12358
|
+
/**
|
|
12359
|
+
* Get SIP Trunk Billing
|
|
12360
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12361
|
+
* @param {*} [options] Override http request option.
|
|
12362
|
+
* @throws {RequiredError}
|
|
12363
|
+
*/
|
|
12364
|
+
getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
12365
|
+
/**
|
|
12366
|
+
* Get Unconnected Calls
|
|
12367
|
+
* @param {*} [options] Override http request option.
|
|
12368
|
+
* @throws {RequiredError}
|
|
12369
|
+
*/
|
|
12370
|
+
getGetUnconnectedCalls(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
|
|
12371
|
+
/**
|
|
12372
|
+
* Get Unconnected Services
|
|
12373
|
+
* @param {*} [options] Override http request option.
|
|
12374
|
+
* @throws {RequiredError}
|
|
12375
|
+
*/
|
|
12376
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
|
|
12377
|
+
/**
|
|
12378
|
+
* Is Bundle Customer
|
|
12379
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12380
|
+
* @param {*} [options] Override http request option.
|
|
12381
|
+
* @throws {RequiredError}
|
|
12382
|
+
*/
|
|
12383
|
+
getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12384
|
+
/**
|
|
12385
|
+
* Add Broadband
|
|
12386
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
12387
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12388
|
+
* @param {*} [options] Override http request option.
|
|
12389
|
+
* @throws {RequiredError}
|
|
12390
|
+
*/
|
|
12391
|
+
postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
12392
|
+
/**
|
|
12393
|
+
* Add Call Tariff To Call Tariff Plan
|
|
12394
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
12395
|
+
* @param {*} [options] Override http request option.
|
|
12396
|
+
* @throws {RequiredError}
|
|
12397
|
+
*/
|
|
12398
|
+
postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
12399
|
+
/**
|
|
12400
|
+
* Add Child Customer
|
|
12401
|
+
* @param {ContactDetail} contactDetail
|
|
12402
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12403
|
+
* @param {number} [customerId] Child Customer ID
|
|
12404
|
+
* @param {*} [options] Override http request option.
|
|
12405
|
+
* @throws {RequiredError}
|
|
12406
|
+
*/
|
|
12407
|
+
postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
12408
|
+
/**
|
|
12409
|
+
* Add Ethernet
|
|
12410
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
12411
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12412
|
+
* @param {*} [options] Override http request option.
|
|
12413
|
+
* @throws {RequiredError}
|
|
12414
|
+
*/
|
|
12415
|
+
postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
12416
|
+
/**
|
|
12417
|
+
* Add Recurring Charge
|
|
12418
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
12419
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12420
|
+
* @param {*} [options] Override http request option.
|
|
12421
|
+
* @throws {RequiredError}
|
|
12422
|
+
*/
|
|
12423
|
+
postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<RecurringCharge>;
|
|
12424
|
+
/**
|
|
12425
|
+
* Add Service To Service Plan
|
|
12426
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
12427
|
+
* @param {*} [options] Override http request option.
|
|
12428
|
+
* @throws {RequiredError}
|
|
12429
|
+
*/
|
|
12430
|
+
postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
12431
|
+
/**
|
|
12432
|
+
* Add SIP Trunk DDIs
|
|
12433
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
12434
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12435
|
+
* @param {*} [options] Override http request option.
|
|
12436
|
+
* @throws {RequiredError}
|
|
12437
|
+
*/
|
|
12438
|
+
postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
12439
|
+
/**
|
|
12440
|
+
* Add Base Service
|
|
12441
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
12442
|
+
* @param {*} [options] Override http request option.
|
|
12443
|
+
* @throws {RequiredError}
|
|
12444
|
+
*/
|
|
12445
|
+
postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
12446
|
+
/**
|
|
12447
|
+
* Add Call Tariff
|
|
12448
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12449
|
+
* @param {*} [options] Override http request option.
|
|
12450
|
+
* @throws {RequiredError}
|
|
12451
|
+
*/
|
|
12452
|
+
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
12453
|
+
/**
|
|
12454
|
+
* Add Connection
|
|
12455
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12456
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
12457
|
+
* @param {*} [options] Override http request option.
|
|
12458
|
+
* @throws {RequiredError}
|
|
12459
|
+
*/
|
|
12460
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
12461
|
+
/**
|
|
12462
|
+
* Add Price Group
|
|
12463
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
12464
|
+
* @param {*} [options] Override http request option.
|
|
12465
|
+
* @throws {RequiredError}
|
|
12466
|
+
*/
|
|
12467
|
+
postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PriceGroup>;
|
|
12468
|
+
/**
|
|
12469
|
+
* Add Service Plan
|
|
12470
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
12471
|
+
* @param {*} [options] Override http request option.
|
|
12472
|
+
* @throws {RequiredError}
|
|
12473
|
+
*/
|
|
12474
|
+
postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): AxiosPromise<ServicePlan>;
|
|
12475
|
+
/**
|
|
12476
|
+
* Add SIP Trunk billing
|
|
12477
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
12478
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12479
|
+
* @param {*} [options] Override http request option.
|
|
12480
|
+
* @throws {RequiredError}
|
|
12481
|
+
*/
|
|
12482
|
+
postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
12483
|
+
/**
|
|
12484
|
+
* Send Invoices
|
|
12485
|
+
* @param {*} [options] Override http request option.
|
|
12486
|
+
* @throws {RequiredError}
|
|
12487
|
+
*/
|
|
12488
|
+
postSendInvoices(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
12489
|
+
/**
|
|
12490
|
+
* Update Connection
|
|
12491
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
12492
|
+
* @param {number} [connectionId] Connection ID
|
|
12493
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12494
|
+
* @param {*} [options] Override http request option.
|
|
12495
|
+
* @throws {RequiredError}
|
|
12496
|
+
*/
|
|
12497
|
+
postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
12498
|
+
/**
|
|
12499
|
+
* Update Recurring Charge
|
|
12500
|
+
* @param {number} id Recurring Charge ID
|
|
12501
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
12502
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12503
|
+
* @param {*} [options] Override http request option.
|
|
12504
|
+
* @throws {RequiredError}
|
|
12505
|
+
*/
|
|
12506
|
+
postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<RecurringCharge>;
|
|
12507
|
+
/**
|
|
12508
|
+
* Update Call Tariff
|
|
12509
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
12510
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
12511
|
+
* @param {*} [options] Override http request option.
|
|
12512
|
+
* @throws {RequiredError}
|
|
12513
|
+
*/
|
|
12514
|
+
putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
12515
|
+
/**
|
|
12516
|
+
* Update Service
|
|
12517
|
+
* @param {number} id Service ID
|
|
12518
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
12519
|
+
* @param {*} [options] Override http request option.
|
|
12520
|
+
* @throws {RequiredError}
|
|
12521
|
+
*/
|
|
12522
|
+
putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
12523
|
+
/**
|
|
12524
|
+
* Transfer Billing Connection
|
|
12525
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
12526
|
+
* @param {number} [id] Connection ID
|
|
12527
|
+
* @param {string} [cli] CLI
|
|
12528
|
+
* @param {boolean} [skipDDis] Skip DDIs
|
|
12529
|
+
* @param {*} [options] Override http request option.
|
|
12530
|
+
* @throws {RequiredError}
|
|
12531
|
+
*/
|
|
12532
|
+
putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
12533
|
+
/**
|
|
12534
|
+
* Convert Child To Parent
|
|
12535
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12536
|
+
* @param {*} [options] Override http request option.
|
|
12537
|
+
* @throws {RequiredError}
|
|
12538
|
+
*/
|
|
12539
|
+
putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
12540
|
+
/**
|
|
12541
|
+
* Disable Bundles
|
|
12542
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12543
|
+
* @param {*} [options] Override http request option.
|
|
12544
|
+
* @throws {RequiredError}
|
|
12545
|
+
*/
|
|
12546
|
+
putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12547
|
+
/**
|
|
12548
|
+
* Disable DDI Billing
|
|
12549
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12550
|
+
* @param {*} [options] Override http request option.
|
|
12551
|
+
* @throws {RequiredError}
|
|
12552
|
+
*/
|
|
12553
|
+
putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12554
|
+
/**
|
|
12555
|
+
* Enable Bundles
|
|
12556
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12557
|
+
* @param {*} [options] Override http request option.
|
|
12558
|
+
* @throws {RequiredError}
|
|
12559
|
+
*/
|
|
12560
|
+
putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12561
|
+
/**
|
|
12562
|
+
* Enable DDI Billing
|
|
12563
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12564
|
+
* @param {*} [options] Override http request option.
|
|
12565
|
+
* @throws {RequiredError}
|
|
12566
|
+
*/
|
|
12567
|
+
putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
12568
|
+
/**
|
|
12569
|
+
* Update Base Service
|
|
12570
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
12571
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
12572
|
+
* @param {*} [options] Override http request option.
|
|
12573
|
+
* @throws {RequiredError}
|
|
12574
|
+
*/
|
|
12575
|
+
putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<BaseService>;
|
|
12576
|
+
/**
|
|
12577
|
+
* Update Call Tariff
|
|
12578
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12579
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12580
|
+
* @param {*} [options] Override http request option.
|
|
12581
|
+
* @throws {RequiredError}
|
|
12582
|
+
*/
|
|
12583
|
+
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
12584
|
+
/**
|
|
12585
|
+
* Update Connection
|
|
12586
|
+
* @param {number} connectionId Connection ID
|
|
12587
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12588
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
12589
|
+
* @param {*} [options] Override http request option.
|
|
12590
|
+
* @throws {RequiredError}
|
|
12591
|
+
*/
|
|
12592
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
12593
|
+
/**
|
|
12594
|
+
* Update Price Group
|
|
12595
|
+
* @param {number} priceGroupId Price Group ID
|
|
12596
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
12597
|
+
* @param {*} [options] Override http request option.
|
|
12598
|
+
* @throws {RequiredError}
|
|
12599
|
+
*/
|
|
12600
|
+
putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PriceGroup>;
|
|
12601
|
+
};
|
|
12602
|
+
/**
|
|
12603
|
+
* BillingApi - object-oriented interface
|
|
12604
|
+
*/
|
|
12605
|
+
export declare class BillingApi extends BaseAPI {
|
|
12606
|
+
/**
|
|
12607
|
+
* Delete Call Tariff
|
|
12608
|
+
* @param {string} priceGroupName Price Group Name
|
|
12609
|
+
* @param {*} [options] Override http request option.
|
|
12610
|
+
* @throws {RequiredError}
|
|
12611
|
+
*/
|
|
12612
|
+
deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
12613
|
+
/**
|
|
12614
|
+
* Delete Recurring Charges
|
|
12615
|
+
* @param {number} id Recurring Charge ID
|
|
12616
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12617
|
+
* @param {*} [options] Override http request option.
|
|
12618
|
+
* @throws {RequiredError}
|
|
12619
|
+
*/
|
|
12620
|
+
deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
12621
|
+
/**
|
|
12622
|
+
* Delete Service
|
|
12623
|
+
* @param {string} planGroup Plan Group
|
|
12624
|
+
* @param {string} serviceCode Service Code
|
|
12625
|
+
* @param {*} [options] Override http request option.
|
|
12626
|
+
* @throws {RequiredError}
|
|
12627
|
+
*/
|
|
12628
|
+
deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
12629
|
+
/**
|
|
12630
|
+
* Delete Customer
|
|
12631
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12632
|
+
* @param {*} [options] Override http request option.
|
|
12633
|
+
* @throws {RequiredError}
|
|
12634
|
+
*/
|
|
12635
|
+
deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
12636
|
+
/**
|
|
12637
|
+
* Delete Base Service
|
|
12638
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
12639
|
+
* @param {*} [options] Override http request option.
|
|
12640
|
+
* @throws {RequiredError}
|
|
12641
|
+
*/
|
|
12642
|
+
deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
12643
|
+
/**
|
|
12644
|
+
* Delete Call Tariff Plan
|
|
12645
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12646
|
+
* @param {*} [options] Override http request option.
|
|
12647
|
+
* @throws {RequiredError}
|
|
12648
|
+
*/
|
|
12649
|
+
deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
12650
|
+
/**
|
|
12651
|
+
* Delete Price Group
|
|
12652
|
+
* @param {number} priceGroupId Price Group ID
|
|
12653
|
+
* @param {*} [options] Override http request option.
|
|
12654
|
+
* @throws {RequiredError}
|
|
12655
|
+
*/
|
|
12656
|
+
deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
12657
|
+
/**
|
|
12658
|
+
* Delete Service Plan
|
|
12659
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12660
|
+
* @param {*} [options] Override http request option.
|
|
12661
|
+
* @throws {RequiredError}
|
|
12662
|
+
*/
|
|
12663
|
+
deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
12664
|
+
/**
|
|
12665
|
+
* Get Recurring Charges
|
|
12666
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12667
|
+
* @param {*} [options] Override http request option.
|
|
12668
|
+
* @throws {RequiredError}
|
|
12669
|
+
*/
|
|
12670
|
+
getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge[], any, {}>>;
|
|
12671
|
+
/**
|
|
12672
|
+
* Get Service
|
|
12673
|
+
* @param {number} id Service ID
|
|
12674
|
+
* @param {*} [options] Override http request option.
|
|
12675
|
+
* @throws {RequiredError}
|
|
12676
|
+
*/
|
|
12677
|
+
getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
12678
|
+
/**
|
|
12679
|
+
* Get SIP Trunk DDIs
|
|
12680
|
+
* @param {number} [connectionId] Connection ID
|
|
12681
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12682
|
+
* @param {*} [options] Override http request option.
|
|
12683
|
+
* @throws {RequiredError}
|
|
12684
|
+
*/
|
|
12685
|
+
getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
12686
|
+
/**
|
|
12687
|
+
* Connection Search
|
|
12688
|
+
* @param {string} search Search
|
|
12689
|
+
* @param {*} [options] Override http request option.
|
|
12690
|
+
* @throws {RequiredError}
|
|
12691
|
+
*/
|
|
12692
|
+
getConnectionSearch(search: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
12693
|
+
/**
|
|
12694
|
+
* Disconnect Connection
|
|
12695
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
12696
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12697
|
+
* @param {*} [options] Override http request option.
|
|
12698
|
+
* @throws {RequiredError}
|
|
12699
|
+
*/
|
|
12700
|
+
getDisconnectConnection(getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
12701
|
+
/**
|
|
12702
|
+
* Disconnect DDI
|
|
12703
|
+
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
12704
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12705
|
+
* @param {*} [options] Override http request option.
|
|
12706
|
+
* @throws {RequiredError}
|
|
12707
|
+
*/
|
|
12708
|
+
getDisconnectDDI(getDisconnectDDIRequest: GetDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
12709
|
+
/**
|
|
12710
|
+
* Get Billing Customers
|
|
12711
|
+
* @summary Get Billing Customers
|
|
12712
|
+
* @param {*} [options] Override http request option.
|
|
12713
|
+
* @throws {RequiredError}
|
|
12714
|
+
*/
|
|
12715
|
+
getGetAllCustomer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
12716
|
+
[key: string]: {
|
|
12717
|
+
[key: string]: string;
|
|
12718
|
+
};
|
|
12719
|
+
}, any, {}>>;
|
|
12720
|
+
/**
|
|
12721
|
+
* Get All MT SIP Trunks
|
|
12722
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12723
|
+
* @param {*} [options] Override http request option.
|
|
12724
|
+
* @throws {RequiredError}
|
|
12725
|
+
*/
|
|
12726
|
+
getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
|
|
12727
|
+
/**
|
|
12728
|
+
* Get All SIP Trunks
|
|
12729
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12730
|
+
* @param {*} [options] Override http request option.
|
|
12731
|
+
* @throws {RequiredError}
|
|
12732
|
+
*/
|
|
12733
|
+
getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
|
|
12734
|
+
/**
|
|
12735
|
+
* Get Base Services
|
|
12736
|
+
* @param {*} [options] Override http request option.
|
|
12737
|
+
* @throws {RequiredError}
|
|
12738
|
+
*/
|
|
12739
|
+
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService[], any, {}>>;
|
|
12740
|
+
/**
|
|
12741
|
+
* Get Customer
|
|
12742
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12743
|
+
* @param {*} [options] Override http request option.
|
|
12744
|
+
* @throws {RequiredError}
|
|
12745
|
+
*/
|
|
12746
|
+
getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
12747
|
+
/**
|
|
12748
|
+
* Get Bundle Calls With Cost
|
|
12749
|
+
* @param {*} [options] Override http request option.
|
|
12750
|
+
* @throws {RequiredError}
|
|
12751
|
+
*/
|
|
12752
|
+
getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
|
|
12753
|
+
/**
|
|
12754
|
+
* Get Call Tariff
|
|
12755
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12756
|
+
* @param {*} [options] Override http request option.
|
|
12757
|
+
* @throws {RequiredError}
|
|
12758
|
+
*/
|
|
12759
|
+
getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
12760
|
+
/**
|
|
12761
|
+
* Get Call Tariffs
|
|
12762
|
+
* @param {*} [options] Override http request option.
|
|
12763
|
+
* @throws {RequiredError}
|
|
12764
|
+
*/
|
|
12765
|
+
getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
|
|
12766
|
+
/**
|
|
12767
|
+
* Get Call Tariffs Detailed
|
|
12768
|
+
* @param {*} [options] Override http request option.
|
|
12769
|
+
* @throws {RequiredError}
|
|
12770
|
+
*/
|
|
12771
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
|
|
12772
|
+
/**
|
|
12773
|
+
* Get Children
|
|
12774
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12775
|
+
* @param {*} [options] Override http request option.
|
|
12776
|
+
* @throws {RequiredError}
|
|
12777
|
+
*/
|
|
12778
|
+
getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any, {}>>;
|
|
12779
|
+
/**
|
|
12780
|
+
* Get Connections
|
|
12781
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
12782
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12783
|
+
* @param {*} [options] Override http request option.
|
|
12784
|
+
* @throws {RequiredError}
|
|
12785
|
+
*/
|
|
12786
|
+
getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
12787
|
+
/**
|
|
12788
|
+
* Get Customer (Global)
|
|
12789
|
+
* @param {string} [accountId] Account ID
|
|
12790
|
+
* @param {number} [customerId] Customer ID
|
|
12791
|
+
* @param {string} [customerCode] Customer Code
|
|
12792
|
+
* @param {*} [options] Override http request option.
|
|
12793
|
+
* @throws {RequiredError}
|
|
12794
|
+
*/
|
|
12795
|
+
getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
12796
|
+
/**
|
|
12797
|
+
* Get Inbound Tariffs
|
|
12798
|
+
* @param {*} [options] Override http request option.
|
|
12799
|
+
* @throws {RequiredError}
|
|
12800
|
+
*/
|
|
12801
|
+
getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
|
|
12802
|
+
/**
|
|
12803
|
+
* Get Inbound Tariffs Detailed
|
|
12804
|
+
* @param {*} [options] Override http request option.
|
|
12805
|
+
* @throws {RequiredError}
|
|
12806
|
+
*/
|
|
12807
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundTariffPlanResponse[], any, {}>>;
|
|
12808
|
+
/**
|
|
12809
|
+
* Get Price Groups
|
|
12810
|
+
* @param {*} [options] Override http request option.
|
|
12811
|
+
* @throws {RequiredError}
|
|
12812
|
+
*/
|
|
12813
|
+
getGetPriceGroups(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup[], any, {}>>;
|
|
12814
|
+
/**
|
|
12815
|
+
* Get Service Plan
|
|
12816
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12817
|
+
* @param {*} [options] Override http request option.
|
|
12818
|
+
* @throws {RequiredError}
|
|
12819
|
+
*/
|
|
12820
|
+
getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan, any, {}>>;
|
|
12821
|
+
/**
|
|
12822
|
+
* Get Service Plans
|
|
12823
|
+
* @param {*} [options] Override http request option.
|
|
12824
|
+
* @throws {RequiredError}
|
|
12825
|
+
*/
|
|
12826
|
+
getGetServicePlans(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
|
|
12827
|
+
/**
|
|
12828
|
+
* Get Service Plans Detailed
|
|
12829
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
12830
|
+
* @param {*} [options] Override http request option.
|
|
12831
|
+
* @throws {RequiredError}
|
|
12832
|
+
*/
|
|
12833
|
+
getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
|
|
12834
|
+
/**
|
|
12835
|
+
* Get SIP Trunk List
|
|
12836
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12837
|
+
* @param {*} [options] Override http request option.
|
|
12838
|
+
* @throws {RequiredError}
|
|
12839
|
+
*/
|
|
12840
|
+
getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
|
|
12841
|
+
/**
|
|
12842
|
+
* Get SIP Trunk Billing
|
|
12843
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12844
|
+
* @param {*} [options] Override http request option.
|
|
12845
|
+
* @throws {RequiredError}
|
|
12846
|
+
*/
|
|
12847
|
+
getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
|
|
12848
|
+
/**
|
|
12849
|
+
* Get Unconnected Calls
|
|
12850
|
+
* @param {*} [options] Override http request option.
|
|
12851
|
+
* @throws {RequiredError}
|
|
12852
|
+
*/
|
|
12853
|
+
getGetUnconnectedCalls(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
|
|
12854
|
+
/**
|
|
12855
|
+
* Get Unconnected Services
|
|
12856
|
+
* @param {*} [options] Override http request option.
|
|
12857
|
+
* @throws {RequiredError}
|
|
12858
|
+
*/
|
|
12859
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
|
|
12860
|
+
/**
|
|
12861
|
+
* Is Bundle Customer
|
|
12862
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12863
|
+
* @param {*} [options] Override http request option.
|
|
12864
|
+
* @throws {RequiredError}
|
|
12865
|
+
*/
|
|
12866
|
+
getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
12867
|
+
/**
|
|
12868
|
+
* Add Broadband
|
|
12869
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
12870
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12871
|
+
* @param {*} [options] Override http request option.
|
|
12872
|
+
* @throws {RequiredError}
|
|
12873
|
+
*/
|
|
12874
|
+
postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
12875
|
+
/**
|
|
12876
|
+
* Add Call Tariff To Call Tariff Plan
|
|
12877
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
12878
|
+
* @param {*} [options] Override http request option.
|
|
12879
|
+
* @throws {RequiredError}
|
|
12880
|
+
*/
|
|
12881
|
+
postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
12882
|
+
/**
|
|
12883
|
+
* Add Child Customer
|
|
12884
|
+
* @param {ContactDetail} contactDetail
|
|
12885
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12886
|
+
* @param {number} [customerId] Child Customer ID
|
|
12887
|
+
* @param {*} [options] Override http request option.
|
|
12888
|
+
* @throws {RequiredError}
|
|
12889
|
+
*/
|
|
12890
|
+
postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
12891
|
+
/**
|
|
12892
|
+
* Add Ethernet
|
|
12893
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
12894
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12895
|
+
* @param {*} [options] Override http request option.
|
|
12896
|
+
* @throws {RequiredError}
|
|
12897
|
+
*/
|
|
12898
|
+
postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
12899
|
+
/**
|
|
12900
|
+
* Add Recurring Charge
|
|
12901
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
12902
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12903
|
+
* @param {*} [options] Override http request option.
|
|
12904
|
+
* @throws {RequiredError}
|
|
12905
|
+
*/
|
|
12906
|
+
postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge, any, {}>>;
|
|
12907
|
+
/**
|
|
12908
|
+
* Add Service To Service Plan
|
|
12909
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
12910
|
+
* @param {*} [options] Override http request option.
|
|
12911
|
+
* @throws {RequiredError}
|
|
12912
|
+
*/
|
|
12913
|
+
postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
12914
|
+
/**
|
|
12915
|
+
* Add SIP Trunk DDIs
|
|
12916
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
12917
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12918
|
+
* @param {*} [options] Override http request option.
|
|
12919
|
+
* @throws {RequiredError}
|
|
12920
|
+
*/
|
|
12921
|
+
postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
12922
|
+
/**
|
|
12923
|
+
* Add Base Service
|
|
12924
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
12925
|
+
* @param {*} [options] Override http request option.
|
|
12926
|
+
* @throws {RequiredError}
|
|
12927
|
+
*/
|
|
12928
|
+
postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
12929
|
+
/**
|
|
12930
|
+
* Add Call Tariff
|
|
12931
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12932
|
+
* @param {*} [options] Override http request option.
|
|
12933
|
+
* @throws {RequiredError}
|
|
12934
|
+
*/
|
|
12935
|
+
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
12936
|
+
/**
|
|
12937
|
+
* Add Connection
|
|
12938
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12939
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
12940
|
+
* @param {*} [options] Override http request option.
|
|
12941
|
+
* @throws {RequiredError}
|
|
12942
|
+
*/
|
|
12943
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
12944
|
+
/**
|
|
12945
|
+
* Add Price Group
|
|
12946
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
12947
|
+
* @param {*} [options] Override http request option.
|
|
12948
|
+
* @throws {RequiredError}
|
|
12949
|
+
*/
|
|
12950
|
+
postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup, any, {}>>;
|
|
12951
|
+
/**
|
|
12952
|
+
* Add Service Plan
|
|
12953
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
12954
|
+
* @param {*} [options] Override http request option.
|
|
12955
|
+
* @throws {RequiredError}
|
|
12956
|
+
*/
|
|
12957
|
+
postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan, any, {}>>;
|
|
12958
|
+
/**
|
|
12959
|
+
* Add SIP Trunk billing
|
|
12960
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
12961
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12962
|
+
* @param {*} [options] Override http request option.
|
|
12963
|
+
* @throws {RequiredError}
|
|
12964
|
+
*/
|
|
12965
|
+
postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
12966
|
+
/**
|
|
12967
|
+
* Send Invoices
|
|
12968
|
+
* @param {*} [options] Override http request option.
|
|
12969
|
+
* @throws {RequiredError}
|
|
12970
|
+
*/
|
|
12971
|
+
postSendInvoices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
12972
|
+
/**
|
|
12973
|
+
* Update Connection
|
|
12974
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
12975
|
+
* @param {number} [connectionId] Connection ID
|
|
12976
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12977
|
+
* @param {*} [options] Override http request option.
|
|
12978
|
+
* @throws {RequiredError}
|
|
12979
|
+
*/
|
|
12980
|
+
postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
12981
|
+
/**
|
|
12982
|
+
* Update Recurring Charge
|
|
12983
|
+
* @param {number} id Recurring Charge ID
|
|
12984
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
12985
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12986
|
+
* @param {*} [options] Override http request option.
|
|
12987
|
+
* @throws {RequiredError}
|
|
12988
|
+
*/
|
|
12989
|
+
postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge, any, {}>>;
|
|
12990
|
+
/**
|
|
12991
|
+
* Update Call Tariff
|
|
12992
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
12993
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
12994
|
+
* @param {*} [options] Override http request option.
|
|
12995
|
+
* @throws {RequiredError}
|
|
12996
|
+
*/
|
|
12997
|
+
putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
12998
|
+
/**
|
|
12999
|
+
* Update Service
|
|
13000
|
+
* @param {number} id Service ID
|
|
13001
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
13002
|
+
* @param {*} [options] Override http request option.
|
|
13003
|
+
* @throws {RequiredError}
|
|
13004
|
+
*/
|
|
13005
|
+
putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
13006
|
+
/**
|
|
13007
|
+
* Transfer Billing Connection
|
|
13008
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
13009
|
+
* @param {number} [id] Connection ID
|
|
13010
|
+
* @param {string} [cli] CLI
|
|
13011
|
+
* @param {boolean} [skipDDis] Skip DDIs
|
|
13012
|
+
* @param {*} [options] Override http request option.
|
|
13013
|
+
* @throws {RequiredError}
|
|
13014
|
+
*/
|
|
13015
|
+
putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13016
|
+
/**
|
|
13017
|
+
* Convert Child To Parent
|
|
13018
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13019
|
+
* @param {*} [options] Override http request option.
|
|
13020
|
+
* @throws {RequiredError}
|
|
13021
|
+
*/
|
|
13022
|
+
putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
13023
|
+
/**
|
|
13024
|
+
* Disable Bundles
|
|
13025
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13026
|
+
* @param {*} [options] Override http request option.
|
|
13027
|
+
* @throws {RequiredError}
|
|
13028
|
+
*/
|
|
13029
|
+
putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13030
|
+
/**
|
|
13031
|
+
* Disable DDI Billing
|
|
13032
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13033
|
+
* @param {*} [options] Override http request option.
|
|
13034
|
+
* @throws {RequiredError}
|
|
13035
|
+
*/
|
|
13036
|
+
putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13037
|
+
/**
|
|
13038
|
+
* Enable Bundles
|
|
13039
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13040
|
+
* @param {*} [options] Override http request option.
|
|
13041
|
+
* @throws {RequiredError}
|
|
13042
|
+
*/
|
|
13043
|
+
putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13044
|
+
/**
|
|
13045
|
+
* Enable DDI Billing
|
|
13046
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13047
|
+
* @param {*} [options] Override http request option.
|
|
13048
|
+
* @throws {RequiredError}
|
|
13049
|
+
*/
|
|
13050
|
+
putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13051
|
+
/**
|
|
13052
|
+
* Update Base Service
|
|
13053
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
13054
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
13055
|
+
* @param {*} [options] Override http request option.
|
|
13056
|
+
* @throws {RequiredError}
|
|
13057
|
+
*/
|
|
13058
|
+
putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService, any, {}>>;
|
|
13059
|
+
/**
|
|
13060
|
+
* Update Call Tariff
|
|
13061
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
13062
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
13063
|
+
* @param {*} [options] Override http request option.
|
|
13064
|
+
* @throws {RequiredError}
|
|
13065
|
+
*/
|
|
13066
|
+
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
13067
|
+
/**
|
|
13068
|
+
* Update Connection
|
|
13069
|
+
* @param {number} connectionId Connection ID
|
|
13070
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13071
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
13072
|
+
* @param {*} [options] Override http request option.
|
|
13073
|
+
* @throws {RequiredError}
|
|
13074
|
+
*/
|
|
13075
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13076
|
+
/**
|
|
13077
|
+
* Update Price Group
|
|
13078
|
+
* @param {number} priceGroupId Price Group ID
|
|
13079
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
13080
|
+
* @param {*} [options] Override http request option.
|
|
13081
|
+
* @throws {RequiredError}
|
|
13082
|
+
*/
|
|
13083
|
+
putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup, any, {}>>;
|
|
13084
|
+
}
|
|
13085
|
+
export declare const GetGetConnectionsTypeEnum: {
|
|
13086
|
+
readonly SipTrunks: "SIP Trunks";
|
|
13087
|
+
readonly Broadband: "Broadband";
|
|
13088
|
+
readonly Ethernet: "Ethernet";
|
|
13089
|
+
readonly Mobile: "Mobile";
|
|
13090
|
+
readonly Wlr: "WLR";
|
|
13091
|
+
readonly Horizon: "Horizon";
|
|
13092
|
+
readonly Nts: "NTS";
|
|
13093
|
+
readonly Hosting: "Hosting";
|
|
13094
|
+
readonly Crm: "CRM";
|
|
13095
|
+
readonly StarterBundle: "Starter Bundle";
|
|
13096
|
+
readonly Other: "Other";
|
|
13097
|
+
readonly RecurringCharges: "Recurring Charges";
|
|
13098
|
+
};
|
|
13099
|
+
export type GetGetConnectionsTypeEnum = typeof GetGetConnectionsTypeEnum[keyof typeof GetGetConnectionsTypeEnum];
|
|
13100
|
+
export declare const GetGetServicesPlanDetailsTypeEnum: {
|
|
13101
|
+
readonly SipTrunks: "SIP Trunks";
|
|
13102
|
+
readonly Broadband: "Broadband";
|
|
13103
|
+
readonly Ethernet: "Ethernet";
|
|
13104
|
+
readonly Mobile: "Mobile";
|
|
13105
|
+
readonly Wlr: "WLR";
|
|
13106
|
+
readonly Horizon: "Horizon";
|
|
13107
|
+
readonly Nts: "NTS";
|
|
13108
|
+
readonly Hosting: "Hosting";
|
|
13109
|
+
readonly Crm: "CRM";
|
|
13110
|
+
readonly StarterBundle: "Starter Bundle";
|
|
13111
|
+
readonly Other: "Other";
|
|
13112
|
+
readonly RecurringCharges: "Recurring Charges";
|
|
13113
|
+
};
|
|
13114
|
+
export type GetGetServicesPlanDetailsTypeEnum = typeof GetGetServicesPlanDetailsTypeEnum[keyof typeof GetGetServicesPlanDetailsTypeEnum];
|
|
10723
13115
|
/**
|
|
10724
13116
|
* CRMApi - axios parameter creator
|
|
10725
13117
|
*/
|