yellowgrid-api-ts 3.2.218-dev.0 → 3.2.219-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +52 -1
- package/README.md +119 -2
- package/api.ts +5345 -123
- package/dist/api.d.ts +2715 -52
- package/dist/api.js +5500 -118
- package/dist/models/ConnectionTypeEnum.d.ts +63 -0
- package/dist/models/ConnectionTypeEnum.js +65 -0
- package/docs/AdminRmaDTO.md +3 -1
- package/docs/AdminRmaItemDTO.md +2 -0
- package/docs/AdminRmaSummaryDTO.md +2 -0
- package/docs/BaseService.md +36 -0
- package/docs/BillingApi.md +3575 -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/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/PostDisconnectDDIRequest.md +20 -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/ProductSerialInfoDTO.md +27 -0
- package/docs/PutAddCallTariffToCallTariffPlanRequest.md +30 -0
- package/docs/PutAddServiceToServicePlanRequest.md +26 -0
- package/docs/PutConnectionSearchRequest.md +20 -0
- package/docs/PutGetBaseServicesRequest.md +28 -0
- package/docs/PutGetCallTariffPlanRequest.md +28 -0
- package/docs/PutGetPriceGroupsRequest.md +28 -0
- package/docs/RMAApi.md +111 -1
- package/docs/RecurringCharge.md +48 -0
- package/docs/RmaDTO.md +2 -0
- package/docs/RmaItemDTO.md +2 -0
- package/docs/RmaOrderDTO.md +29 -0
- package/docs/RmaOrderItemDTO.md +33 -0
- package/docs/RmaOrderSummaryDTO.md +25 -0
- package/docs/RmaSummaryDTO.md +2 -0
- package/docs/Sdr.md +66 -0
- package/docs/SdrReferenceType.md +24 -0
- package/docs/Service.md +42 -0
- package/docs/ServicePlan.md +36 -0
- package/docs/SpecialService.md +40 -0
- package/docs/TariffRate.md +30 -0
- package/docs/UnconnectedSdr.md +68 -0
- package/models/ConnectionTypeEnum.ts +64 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -744,6 +744,10 @@ export interface AdminRmaDTO {
|
|
|
744
744
|
* RMA Status
|
|
745
745
|
*/
|
|
746
746
|
'status'?: AdminRmaDTOStatusEnum;
|
|
747
|
+
/**
|
|
748
|
+
* RMA Status Text
|
|
749
|
+
*/
|
|
750
|
+
'statusText'?: string;
|
|
747
751
|
/**
|
|
748
752
|
* RMA Approval Status
|
|
749
753
|
*/
|
|
@@ -755,7 +759,7 @@ export interface AdminRmaDTO {
|
|
|
755
759
|
/**
|
|
756
760
|
* Customer ID
|
|
757
761
|
*/
|
|
758
|
-
'customerId'?:
|
|
762
|
+
'customerId'?: string;
|
|
759
763
|
/**
|
|
760
764
|
* Customer Name
|
|
761
765
|
*/
|
|
@@ -829,11 +833,11 @@ export interface AdminRmaItemDTO {
|
|
|
829
833
|
/**
|
|
830
834
|
* RMA Item MAC Address
|
|
831
835
|
*/
|
|
832
|
-
'macAddress'?: string;
|
|
836
|
+
'macAddress'?: string | null;
|
|
833
837
|
/**
|
|
834
838
|
* RMA Item Serial Number
|
|
835
839
|
*/
|
|
836
|
-
'serialNumber'?: string;
|
|
840
|
+
'serialNumber'?: string | null;
|
|
837
841
|
/**
|
|
838
842
|
* RMA Item Received Status
|
|
839
843
|
*/
|
|
@@ -842,6 +846,10 @@ export interface AdminRmaItemDTO {
|
|
|
842
846
|
* RMA Item Status
|
|
843
847
|
*/
|
|
844
848
|
'status'?: AdminRmaItemDTOStatusEnum;
|
|
849
|
+
/**
|
|
850
|
+
* RMA Item Status Text
|
|
851
|
+
*/
|
|
852
|
+
'statusText'?: string;
|
|
845
853
|
/**
|
|
846
854
|
* RMA Item Note
|
|
847
855
|
*/
|
|
@@ -910,6 +918,10 @@ export interface AdminRmaSummaryDTO {
|
|
|
910
918
|
* RMA Status
|
|
911
919
|
*/
|
|
912
920
|
'status'?: AdminRmaSummaryDTOStatusEnum;
|
|
921
|
+
/**
|
|
922
|
+
* Status Text
|
|
923
|
+
*/
|
|
924
|
+
'statusText'?: string;
|
|
913
925
|
/**
|
|
914
926
|
* RMA Summary Items
|
|
915
927
|
*/
|
|
@@ -1315,6 +1327,17 @@ export declare const AxisDataDTOTypeEnum: {
|
|
|
1315
1327
|
readonly Log: "log";
|
|
1316
1328
|
};
|
|
1317
1329
|
export type AxisDataDTOTypeEnum = typeof AxisDataDTOTypeEnum[keyof typeof AxisDataDTOTypeEnum];
|
|
1330
|
+
export interface BaseService {
|
|
1331
|
+
'createdDate'?: string;
|
|
1332
|
+
'id'?: number;
|
|
1333
|
+
'serviceCode'?: string | null;
|
|
1334
|
+
'dataType': string | null;
|
|
1335
|
+
'originalDescription': string | null;
|
|
1336
|
+
'cost'?: number;
|
|
1337
|
+
'startDate'?: string;
|
|
1338
|
+
'endDate'?: string | null;
|
|
1339
|
+
'filePeriod'?: string | null;
|
|
1340
|
+
}
|
|
1318
1341
|
/**
|
|
1319
1342
|
* Basic Order Item
|
|
1320
1343
|
*/
|
|
@@ -1496,6 +1519,26 @@ export interface BatchEntity {
|
|
|
1496
1519
|
*/
|
|
1497
1520
|
'mac'?: string;
|
|
1498
1521
|
}
|
|
1522
|
+
export interface Bundle {
|
|
1523
|
+
'createdDate'?: string;
|
|
1524
|
+
'id'?: number;
|
|
1525
|
+
'name': string | null;
|
|
1526
|
+
'category': string | null;
|
|
1527
|
+
'description': string | null;
|
|
1528
|
+
'customers'?: Array<Customer> | null;
|
|
1529
|
+
'bundleCustomers'?: Array<BundleCustomer> | null;
|
|
1530
|
+
'filePeriod'?: string | null;
|
|
1531
|
+
}
|
|
1532
|
+
export interface BundleCustomer {
|
|
1533
|
+
'createdDate'?: string;
|
|
1534
|
+
'id'?: number;
|
|
1535
|
+
'bundleId'?: number;
|
|
1536
|
+
'bundle': Bundle;
|
|
1537
|
+
'customerId'?: number;
|
|
1538
|
+
'customer': Customer;
|
|
1539
|
+
'endDate'?: string | null;
|
|
1540
|
+
'filePeriod'?: string | null;
|
|
1541
|
+
}
|
|
1499
1542
|
/**
|
|
1500
1543
|
* Call Barring
|
|
1501
1544
|
*/
|
|
@@ -1521,6 +1564,82 @@ export interface CallBarringModel {
|
|
|
1521
1564
|
*/
|
|
1522
1565
|
'block087Calls'?: boolean;
|
|
1523
1566
|
}
|
|
1567
|
+
export interface CallTariff {
|
|
1568
|
+
'createdDate'?: string;
|
|
1569
|
+
'id'?: number;
|
|
1570
|
+
'callTariffPlanId'?: number | null;
|
|
1571
|
+
'inboundTariffPlanId'?: number | null;
|
|
1572
|
+
'priceGroupId'?: number;
|
|
1573
|
+
'priceGroup': PriceGroup;
|
|
1574
|
+
'tariffRate': TariffRate;
|
|
1575
|
+
'filePeriod'?: string | null;
|
|
1576
|
+
}
|
|
1577
|
+
export interface CallTariffPlan {
|
|
1578
|
+
'createdDate'?: string;
|
|
1579
|
+
'id'?: number;
|
|
1580
|
+
'name': string | null;
|
|
1581
|
+
'unknownDestinationsRate': CustomerRate;
|
|
1582
|
+
'ngcsAccessChargePerMin'?: number;
|
|
1583
|
+
'ngcsAccessChargePerCall'?: number;
|
|
1584
|
+
'callTariffs'?: Array<CallTariff> | null;
|
|
1585
|
+
'filePeriod'?: string | null;
|
|
1586
|
+
'closed'?: boolean;
|
|
1587
|
+
}
|
|
1588
|
+
export interface CallTariffResponse {
|
|
1589
|
+
'id'?: number;
|
|
1590
|
+
'priceGroupId'?: number;
|
|
1591
|
+
'priceGroup'?: PriceGroupResponse;
|
|
1592
|
+
'tariffRate'?: TariffRate;
|
|
1593
|
+
}
|
|
1594
|
+
export interface Cdr {
|
|
1595
|
+
'id'?: number;
|
|
1596
|
+
'callType': string | null;
|
|
1597
|
+
'callCause'?: string | null;
|
|
1598
|
+
'customerIdentifier': string | null;
|
|
1599
|
+
'nonChargedParty': string | null;
|
|
1600
|
+
'callDate': string;
|
|
1601
|
+
'callTime': string;
|
|
1602
|
+
'duration'?: number | null;
|
|
1603
|
+
'bytesTransmitted'?: number | null;
|
|
1604
|
+
'bytesReceived'?: number | null;
|
|
1605
|
+
'description'?: string | null;
|
|
1606
|
+
'chargecode'?: string | null;
|
|
1607
|
+
'timeBand'?: string | null;
|
|
1608
|
+
'salesprice'?: number | null;
|
|
1609
|
+
'salespricePreBundle'?: number | null;
|
|
1610
|
+
'extension'?: string | null;
|
|
1611
|
+
'ddi'?: string | null;
|
|
1612
|
+
'groupingID'?: string | null;
|
|
1613
|
+
'callClass'?: string | null;
|
|
1614
|
+
'carrier'?: string | null;
|
|
1615
|
+
'recording'?: boolean | null;
|
|
1616
|
+
'vat'?: string | null;
|
|
1617
|
+
'countryOfOrigin'?: string | null;
|
|
1618
|
+
'network'?: string | null;
|
|
1619
|
+
'retailTariffCode'?: string | null;
|
|
1620
|
+
'remoteNetwork'?: string | null;
|
|
1621
|
+
'apn'?: string | null;
|
|
1622
|
+
'divertedNumber'?: string | null;
|
|
1623
|
+
'ringTime'?: number | null;
|
|
1624
|
+
'recordID'?: string | null;
|
|
1625
|
+
'currency'?: string | null;
|
|
1626
|
+
'presentationNumber'?: string | null;
|
|
1627
|
+
'networkAccessReference'?: string | null;
|
|
1628
|
+
'ngcsAccessCharge'?: number | null;
|
|
1629
|
+
'ngcsServiceCharge'?: number | null;
|
|
1630
|
+
'totalBytesTransferred'?: number | null;
|
|
1631
|
+
'userID'?: string | null;
|
|
1632
|
+
'onwardBillingReference'?: string | null;
|
|
1633
|
+
'contractName'?: string | null;
|
|
1634
|
+
'bundleName'?: string | null;
|
|
1635
|
+
'bundleAllowance'?: number | null;
|
|
1636
|
+
'discountReference'?: string | null;
|
|
1637
|
+
'routingCode'?: string | null;
|
|
1638
|
+
'filename': string | null;
|
|
1639
|
+
'contentReference': string | null;
|
|
1640
|
+
'processedCdr'?: ProcessedCdr;
|
|
1641
|
+
'filePeriod': string | null;
|
|
1642
|
+
}
|
|
1524
1643
|
/**
|
|
1525
1644
|
* Client Details
|
|
1526
1645
|
*/
|
|
@@ -1600,6 +1719,46 @@ export interface CompanyContractModel {
|
|
|
1600
1719
|
*/
|
|
1601
1720
|
'timeRemaining'?: string;
|
|
1602
1721
|
}
|
|
1722
|
+
export interface ConnectionRequest {
|
|
1723
|
+
'customerId': number;
|
|
1724
|
+
'reference': string | null;
|
|
1725
|
+
'connectionDate': string;
|
|
1726
|
+
'servicePlanId': number;
|
|
1727
|
+
'zeroRated'?: boolean | null;
|
|
1728
|
+
'callTariffPlanId'?: number | null;
|
|
1729
|
+
'inboundTariffPlanId'?: number | null;
|
|
1730
|
+
'invoiceDescription'?: string | null;
|
|
1731
|
+
'mtSipTrunkRequest'?: MultiTenantSipTrunkRequest;
|
|
1732
|
+
}
|
|
1733
|
+
export interface ConnectionType {
|
|
1734
|
+
'createdDate'?: string;
|
|
1735
|
+
'id'?: number;
|
|
1736
|
+
'name': string | null;
|
|
1737
|
+
'description'?: string | null;
|
|
1738
|
+
'accountCode': string | null;
|
|
1739
|
+
}
|
|
1740
|
+
export interface ContactDetail {
|
|
1741
|
+
'customerName': string | null;
|
|
1742
|
+
'contactName'?: string | null;
|
|
1743
|
+
'address1'?: string | null;
|
|
1744
|
+
'address2'?: string | null;
|
|
1745
|
+
'address3'?: string | null;
|
|
1746
|
+
'address4'?: string | null;
|
|
1747
|
+
'postCode'?: string | null;
|
|
1748
|
+
'country'?: string | null;
|
|
1749
|
+
'phone1'?: string | null;
|
|
1750
|
+
'email'?: string | null;
|
|
1751
|
+
'siteInfo'?: string | null;
|
|
1752
|
+
'siteContactName'?: string | null;
|
|
1753
|
+
'siteAddress1'?: string | null;
|
|
1754
|
+
'siteAddress2'?: string | null;
|
|
1755
|
+
'siteAddress3'?: string | null;
|
|
1756
|
+
'siteAddress4'?: string | null;
|
|
1757
|
+
'sitePostcode'?: string | null;
|
|
1758
|
+
'siteCountry'?: string | null;
|
|
1759
|
+
'sitePhone1'?: string | null;
|
|
1760
|
+
'siteEmail'?: string | null;
|
|
1761
|
+
}
|
|
1603
1762
|
/**
|
|
1604
1763
|
* Order Contact Info
|
|
1605
1764
|
*/
|
|
@@ -2147,6 +2306,48 @@ export interface CrmNoteModel {
|
|
|
2147
2306
|
*/
|
|
2148
2307
|
'callId'?: number;
|
|
2149
2308
|
}
|
|
2309
|
+
export interface Customer {
|
|
2310
|
+
'createdDate'?: string;
|
|
2311
|
+
'id'?: number;
|
|
2312
|
+
'customerCode': string | null;
|
|
2313
|
+
'parentCustomerCode'?: string | null;
|
|
2314
|
+
'customerName': string | null;
|
|
2315
|
+
'accountId'?: string | null;
|
|
2316
|
+
'contactName'?: string | null;
|
|
2317
|
+
'address1'?: string | null;
|
|
2318
|
+
'address2'?: string | null;
|
|
2319
|
+
'address3'?: string | null;
|
|
2320
|
+
'address4'?: string | null;
|
|
2321
|
+
'postCode'?: string | null;
|
|
2322
|
+
'country'?: string | null;
|
|
2323
|
+
'phone1'?: string | null;
|
|
2324
|
+
'email'?: string | null;
|
|
2325
|
+
'ddEnabled'?: boolean | null;
|
|
2326
|
+
'acClosedDate'?: string | null;
|
|
2327
|
+
'siteInfo'?: string | null;
|
|
2328
|
+
'siteContactName'?: string | null;
|
|
2329
|
+
'siteAddress1'?: string | null;
|
|
2330
|
+
'siteAddress2'?: string | null;
|
|
2331
|
+
'siteAddress3'?: string | null;
|
|
2332
|
+
'siteAddress4'?: string | null;
|
|
2333
|
+
'sitePostcode'?: string | null;
|
|
2334
|
+
'siteCountry'?: string | null;
|
|
2335
|
+
'sitePhone1'?: string | null;
|
|
2336
|
+
'siteEmail'?: string | null;
|
|
2337
|
+
'vatCode'?: string | null;
|
|
2338
|
+
'outboundClis'?: Array<OutboundCli> | null;
|
|
2339
|
+
'inboundClis'?: Array<InboundCli> | null;
|
|
2340
|
+
'bundles'?: Array<Bundle> | null;
|
|
2341
|
+
'bundleCustomers'?: Array<BundleCustomer> | null;
|
|
2342
|
+
'ddiBilling'?: boolean;
|
|
2343
|
+
'lastInvoiceNumber'?: string | null;
|
|
2344
|
+
'username'?: string | null;
|
|
2345
|
+
'sshKey'?: string | null;
|
|
2346
|
+
'directCustomer'?: boolean;
|
|
2347
|
+
'parentCustomer'?: boolean;
|
|
2348
|
+
'childCustomer'?: boolean;
|
|
2349
|
+
'acClosed'?: boolean;
|
|
2350
|
+
}
|
|
2150
2351
|
/**
|
|
2151
2352
|
* Customer Coordinates
|
|
2152
2353
|
*/
|
|
@@ -2354,6 +2555,16 @@ export interface CustomerPriceListEnum {
|
|
|
2354
2555
|
*/
|
|
2355
2556
|
'name'?: string;
|
|
2356
2557
|
}
|
|
2558
|
+
export interface CustomerRate {
|
|
2559
|
+
'markup'?: CustomerRateType;
|
|
2560
|
+
'amount'?: number;
|
|
2561
|
+
}
|
|
2562
|
+
export declare const CustomerRateType: {
|
|
2563
|
+
readonly Fixed: "FIXED";
|
|
2564
|
+
readonly MarkupPercent: "MARKUP_PERCENT";
|
|
2565
|
+
readonly MarkupFixed: "MARKUP_FIXED";
|
|
2566
|
+
};
|
|
2567
|
+
export type CustomerRateType = typeof CustomerRateType[keyof typeof CustomerRateType];
|
|
2357
2568
|
/**
|
|
2358
2569
|
* Customer RMAs
|
|
2359
2570
|
*/
|
|
@@ -3088,6 +3299,40 @@ export declare const HostingRegionDTOCodeEnum: {
|
|
|
3088
3299
|
readonly UsWestOr1: "US-WEST-OR-1";
|
|
3089
3300
|
};
|
|
3090
3301
|
export type HostingRegionDTOCodeEnum = typeof HostingRegionDTOCodeEnum[keyof typeof HostingRegionDTOCodeEnum];
|
|
3302
|
+
export interface InboundCli {
|
|
3303
|
+
'createdDate'?: string;
|
|
3304
|
+
'id'?: number;
|
|
3305
|
+
'cli': string | null;
|
|
3306
|
+
'customerId'?: number;
|
|
3307
|
+
'customer': Customer;
|
|
3308
|
+
'prefix': string | null;
|
|
3309
|
+
'phoneNumber': string | null;
|
|
3310
|
+
'operator': string | null;
|
|
3311
|
+
'inboundTariffPlanId'?: number;
|
|
3312
|
+
'inboundTariffPlan'?: InboundTariffPlan;
|
|
3313
|
+
'invoiceDescription'?: string | null;
|
|
3314
|
+
'connected'?: boolean;
|
|
3315
|
+
'disconnectedDate'?: string | null;
|
|
3316
|
+
'lastInvoicedPeriod'?: string | null;
|
|
3317
|
+
'planName'?: string | null;
|
|
3318
|
+
'filePeriod'?: string | null;
|
|
3319
|
+
}
|
|
3320
|
+
export interface InboundTariffPlan {
|
|
3321
|
+
'createdDate'?: string;
|
|
3322
|
+
'id'?: number;
|
|
3323
|
+
'name': string | null;
|
|
3324
|
+
'rate': TariffRate;
|
|
3325
|
+
'terminationOverrideTariffs'?: Array<CallTariff> | null;
|
|
3326
|
+
'filePeriod'?: string | null;
|
|
3327
|
+
'closed'?: boolean;
|
|
3328
|
+
}
|
|
3329
|
+
export interface InboundTariffPlanResponse {
|
|
3330
|
+
'id'?: number;
|
|
3331
|
+
'name'?: string | null;
|
|
3332
|
+
'rate'?: TariffRate;
|
|
3333
|
+
'callTariffs'?: Array<CallTariffResponse> | null;
|
|
3334
|
+
'closed'?: boolean;
|
|
3335
|
+
}
|
|
3091
3336
|
/**
|
|
3092
3337
|
* Installation Passwords
|
|
3093
3338
|
*/
|
|
@@ -3770,6 +4015,10 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
3770
4015
|
readonly CallBarring: "Call Barring";
|
|
3771
4016
|
};
|
|
3772
4017
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
4018
|
+
export interface MultiTenantSipTrunkRequest {
|
|
4019
|
+
'isPrimary': boolean;
|
|
4020
|
+
'mtPrimarySipTrunkId'?: number | null;
|
|
4021
|
+
}
|
|
3773
4022
|
/**
|
|
3774
4023
|
* Name Request
|
|
3775
4024
|
*/
|
|
@@ -4814,6 +5063,34 @@ export interface OrderedItemModel {
|
|
|
4814
5063
|
*/
|
|
4815
5064
|
'returnedStock'?: number;
|
|
4816
5065
|
}
|
|
5066
|
+
export interface OutboundCli {
|
|
5067
|
+
'createdDate'?: string;
|
|
5068
|
+
'id'?: number;
|
|
5069
|
+
'cli': string | null;
|
|
5070
|
+
'customerId'?: number;
|
|
5071
|
+
'customer'?: Customer;
|
|
5072
|
+
'operator'?: string | null;
|
|
5073
|
+
'callTariffPlanId'?: number | null;
|
|
5074
|
+
'callTariffPlan'?: CallTariffPlan;
|
|
5075
|
+
'servicePlanId'?: number;
|
|
5076
|
+
'servicePlan'?: ServicePlan;
|
|
5077
|
+
'invoiceDescription'?: string | null;
|
|
5078
|
+
'inboundTariffPlanId'?: number | null;
|
|
5079
|
+
'inboundTariffPlan'?: InboundTariffPlan;
|
|
5080
|
+
'inboundInvoiceDescription'?: string | null;
|
|
5081
|
+
'serviceID'?: string | null;
|
|
5082
|
+
'connectedDate'?: string;
|
|
5083
|
+
'disconnectedDate'?: string | null;
|
|
5084
|
+
'lastTrafficPeriod'?: string | null;
|
|
5085
|
+
'filePeriod'?: string | null;
|
|
5086
|
+
'sipTrunkSdrRefId'?: number | null;
|
|
5087
|
+
'isMtPrimarySipTrunk'?: boolean;
|
|
5088
|
+
'mtPrimarySipTrunkId'?: number | null;
|
|
5089
|
+
'zeroRated'?: boolean;
|
|
5090
|
+
'connected'?: boolean;
|
|
5091
|
+
'futureConnection'?: boolean;
|
|
5092
|
+
'sdrRefType'?: SdrReferenceType;
|
|
5093
|
+
}
|
|
4817
5094
|
/**
|
|
4818
5095
|
* 3CX Partner Details
|
|
4819
5096
|
*/
|
|
@@ -5171,25 +5448,96 @@ export interface PortalLoginModel {
|
|
|
5171
5448
|
*/
|
|
5172
5449
|
'redirect_uri'?: string;
|
|
5173
5450
|
}
|
|
5451
|
+
export interface PostAddBroadbandRequest {
|
|
5452
|
+
'customerId'?: number | null;
|
|
5453
|
+
'orderId'?: number;
|
|
5454
|
+
/**
|
|
5455
|
+
* Date Time
|
|
5456
|
+
*/
|
|
5457
|
+
'connectionDate'?: string | null;
|
|
5458
|
+
'servicePlanName'?: string;
|
|
5459
|
+
'invoiceDescription'?: string | null;
|
|
5460
|
+
}
|
|
5461
|
+
export interface PostAddCallTariffToCallTariffPlanRequest {
|
|
5462
|
+
'planName'?: string;
|
|
5463
|
+
'priceGroupName'?: string;
|
|
5464
|
+
'tariffRateMarkup'?: string;
|
|
5465
|
+
'tariffRateDay'?: number;
|
|
5466
|
+
'tariffRateEvening'?: number;
|
|
5467
|
+
'tariffRateWeekend'?: number;
|
|
5468
|
+
'tariffRateMinimum'?: number;
|
|
5469
|
+
'tariffRateSetup'?: number;
|
|
5470
|
+
}
|
|
5471
|
+
export interface PostAddEthernetRequest {
|
|
5472
|
+
'customerId'?: number | null;
|
|
5473
|
+
'cesRef'?: string;
|
|
5474
|
+
/**
|
|
5475
|
+
* Date Time
|
|
5476
|
+
*/
|
|
5477
|
+
'connectionDate'?: string | null;
|
|
5478
|
+
'servicePlanName'?: string;
|
|
5479
|
+
'invoiceDescription'?: string | null;
|
|
5480
|
+
}
|
|
5174
5481
|
export interface PostAddOrderNoteRequest {
|
|
5175
5482
|
/**
|
|
5176
5483
|
* Order Note
|
|
5177
5484
|
*/
|
|
5178
5485
|
'note'?: string;
|
|
5179
5486
|
}
|
|
5487
|
+
export interface PostAddRecurringChargeRequest {
|
|
5488
|
+
'reference'?: string;
|
|
5489
|
+
'description'?: string;
|
|
5490
|
+
'customerCharge'?: number;
|
|
5491
|
+
'quantity'?: number;
|
|
5492
|
+
/**
|
|
5493
|
+
* Date Time
|
|
5494
|
+
*/
|
|
5495
|
+
'endPeriod'?: string | null;
|
|
5496
|
+
'accountCode'?: string | null;
|
|
5497
|
+
}
|
|
5498
|
+
export interface PostAddServiceToServicePlanRequest {
|
|
5499
|
+
'serviceCode'?: string;
|
|
5500
|
+
'planGroup'?: string;
|
|
5501
|
+
'customerRate_Markup'?: string;
|
|
5502
|
+
'customerRate_Amount'?: number;
|
|
5503
|
+
'description'?: string | null;
|
|
5504
|
+
'hideOnInvoice'?: boolean | null;
|
|
5505
|
+
}
|
|
5506
|
+
export interface PostAddSipTrunkDDIsRequest {
|
|
5507
|
+
'startDDI'?: Array<string>;
|
|
5508
|
+
'sipTrunkSdrRefId'?: string;
|
|
5509
|
+
/**
|
|
5510
|
+
* Date Time
|
|
5511
|
+
*/
|
|
5512
|
+
'connectionDate'?: string | null;
|
|
5513
|
+
'endDDI'?: Array<string> | null;
|
|
5514
|
+
'inboundTariffPlanName'?: Array<string> | null;
|
|
5515
|
+
'invoiceDescription'?: Array<string> | null;
|
|
5516
|
+
}
|
|
5180
5517
|
export interface PostAddWebhook200Response {
|
|
5181
5518
|
'url'?: string;
|
|
5182
5519
|
}
|
|
5520
|
+
export interface PostDisconnectDDIRequest {
|
|
5521
|
+
'id'?: number;
|
|
5522
|
+
}
|
|
5183
5523
|
/**
|
|
5184
5524
|
* @type PostGenerateReport200Response
|
|
5185
5525
|
*/
|
|
5186
5526
|
export type PostGenerateReport200Response = GraphDTO | TableDTO;
|
|
5527
|
+
export interface PostGetBaseServicesRequest {
|
|
5528
|
+
'serviceCode'?: string | null;
|
|
5529
|
+
'originalDescription'?: string;
|
|
5530
|
+
}
|
|
5187
5531
|
export interface PostGetClientCredentialsRequest {
|
|
5188
5532
|
/**
|
|
5189
5533
|
* OAuth 2.0 scopes
|
|
5190
5534
|
*/
|
|
5191
5535
|
'scopes'?: Array<string>;
|
|
5192
5536
|
}
|
|
5537
|
+
export interface PostGetPriceGroupsRequest {
|
|
5538
|
+
'name'?: string;
|
|
5539
|
+
'description'?: string;
|
|
5540
|
+
}
|
|
5193
5541
|
export interface PostGetProductForCustomerRequest {
|
|
5194
5542
|
/**
|
|
5195
5543
|
* Quantity
|
|
@@ -5212,6 +5560,38 @@ export interface PostGetProductForCustomerRequest {
|
|
|
5212
5560
|
*/
|
|
5213
5561
|
'renewalYears'?: number | null;
|
|
5214
5562
|
}
|
|
5563
|
+
export interface PostGetServicePlansRequest {
|
|
5564
|
+
'name'?: string;
|
|
5565
|
+
'planGroup'?: PostGetServicePlansRequestPlanGroupEnum;
|
|
5566
|
+
}
|
|
5567
|
+
export declare const PostGetServicePlansRequestPlanGroupEnum: {
|
|
5568
|
+
readonly SipTrunks: "SIP Trunks";
|
|
5569
|
+
readonly Broadband: "Broadband";
|
|
5570
|
+
readonly Ethernet: "Ethernet";
|
|
5571
|
+
readonly Mobile: "Mobile";
|
|
5572
|
+
readonly Wlr: "WLR";
|
|
5573
|
+
readonly Horizon: "Horizon";
|
|
5574
|
+
readonly Nts: "NTS";
|
|
5575
|
+
readonly Hosting: "Hosting";
|
|
5576
|
+
readonly Crm: "CRM";
|
|
5577
|
+
readonly StarterBundle: "Starter Bundle";
|
|
5578
|
+
readonly Other: "Other";
|
|
5579
|
+
readonly RecurringCharges: "Recurring Charges";
|
|
5580
|
+
};
|
|
5581
|
+
export type PostGetServicePlansRequestPlanGroupEnum = typeof PostGetServicePlansRequestPlanGroupEnum[keyof typeof PostGetServicePlansRequestPlanGroupEnum];
|
|
5582
|
+
export interface PostGetSipTrunksBillingRequest {
|
|
5583
|
+
'parentEndpointId'?: string | null;
|
|
5584
|
+
'endpointId'?: string;
|
|
5585
|
+
/**
|
|
5586
|
+
* Date Time
|
|
5587
|
+
*/
|
|
5588
|
+
'connectionDate'?: string | null;
|
|
5589
|
+
'servicePlanName'?: string;
|
|
5590
|
+
'callTariffPlanName'?: string;
|
|
5591
|
+
'invoiceDescription'?: string | null;
|
|
5592
|
+
'isMtPrimarySipTrunk'?: boolean | null;
|
|
5593
|
+
'mtPrimarySipTrunkId'?: number | null;
|
|
5594
|
+
}
|
|
5215
5595
|
export interface PostSendWelcomeEmailRequest {
|
|
5216
5596
|
/**
|
|
5217
5597
|
* email
|
|
@@ -5224,6 +5604,34 @@ export interface PostSplitOrderRequest {
|
|
|
5224
5604
|
*/
|
|
5225
5605
|
'itemIds'?: Array<number>;
|
|
5226
5606
|
}
|
|
5607
|
+
export interface PostUpdateConnectionRequest {
|
|
5608
|
+
'property'?: string;
|
|
5609
|
+
'value'?: string;
|
|
5610
|
+
}
|
|
5611
|
+
export interface PostUpdateRecurringChargeRequest {
|
|
5612
|
+
'reference'?: string | null;
|
|
5613
|
+
'description'?: string | null;
|
|
5614
|
+
'customerCharge'?: number | null;
|
|
5615
|
+
'quantity'?: number | null;
|
|
5616
|
+
/**
|
|
5617
|
+
* Date Time
|
|
5618
|
+
*/
|
|
5619
|
+
'endPeriod'?: string | null;
|
|
5620
|
+
'accountCode'?: string | null;
|
|
5621
|
+
}
|
|
5622
|
+
export interface PriceGroup {
|
|
5623
|
+
'createdDate'?: string;
|
|
5624
|
+
'id'?: number;
|
|
5625
|
+
'name': string | null;
|
|
5626
|
+
'category': string | null;
|
|
5627
|
+
'description': string | null;
|
|
5628
|
+
'filePeriod'?: string | null;
|
|
5629
|
+
}
|
|
5630
|
+
export interface PriceGroupResponse {
|
|
5631
|
+
'id'?: number;
|
|
5632
|
+
'name'?: string | null;
|
|
5633
|
+
'description'?: string | null;
|
|
5634
|
+
}
|
|
5227
5635
|
/**
|
|
5228
5636
|
* Price & Stock List
|
|
5229
5637
|
*/
|
|
@@ -5303,6 +5711,47 @@ export interface PrizesEntity {
|
|
|
5303
5711
|
*/
|
|
5304
5712
|
'image'?: string;
|
|
5305
5713
|
}
|
|
5714
|
+
export interface ProcessedCdr {
|
|
5715
|
+
'id'?: number;
|
|
5716
|
+
'cdrId'?: number;
|
|
5717
|
+
'cdr'?: Cdr;
|
|
5718
|
+
'contentReference'?: string | null;
|
|
5719
|
+
'callClass'?: string | null;
|
|
5720
|
+
'inbound'?: boolean;
|
|
5721
|
+
'cli'?: string | null;
|
|
5722
|
+
'presentationNumber'?: string | null;
|
|
5723
|
+
'outboundCliId'?: number | null;
|
|
5724
|
+
'outboundCli'?: OutboundCli;
|
|
5725
|
+
'mtPrimaryOutboundCliId'?: number | null;
|
|
5726
|
+
'mtPrimaryOutboundCli'?: OutboundCli;
|
|
5727
|
+
'callTariffPlanId'?: number | null;
|
|
5728
|
+
'callTariffPlan'?: CallTariffPlan;
|
|
5729
|
+
'inboundTariffPlanId'?: number | null;
|
|
5730
|
+
'inboundTariffPlan'?: InboundTariffPlan;
|
|
5731
|
+
'callTariffId'?: number | null;
|
|
5732
|
+
'callTariff'?: CallTariff;
|
|
5733
|
+
'customerChargePreRounded'?: number | null;
|
|
5734
|
+
'customerCharge'?: number | null;
|
|
5735
|
+
'customerChargePostBundle'?: number | null;
|
|
5736
|
+
'bundleName'?: string | null;
|
|
5737
|
+
'customerId'?: number | null;
|
|
5738
|
+
'tariffPlanName'?: string | null;
|
|
5739
|
+
'chargecode'?: string | null;
|
|
5740
|
+
'priceGroupName'?: string | null;
|
|
5741
|
+
'unknownDestRate'?: CustomerRate;
|
|
5742
|
+
'ngcsAcsChgPerMin'?: number | null;
|
|
5743
|
+
'ngcsAcsChgPerCall'?: number | null;
|
|
5744
|
+
'customerNGCSAcssChg'?: number | null;
|
|
5745
|
+
'customerRate'?: CustomerRate;
|
|
5746
|
+
'salesprice'?: number | null;
|
|
5747
|
+
'callDateTime'?: string | null;
|
|
5748
|
+
'duration'?: number | null;
|
|
5749
|
+
'ngcsServiceCharge'?: number | null;
|
|
5750
|
+
'cdrDescription'?: string | null;
|
|
5751
|
+
'calledNumber'?: string | null;
|
|
5752
|
+
'remarks'?: string | null;
|
|
5753
|
+
'filePeriod'?: string | null;
|
|
5754
|
+
}
|
|
5306
5755
|
/**
|
|
5307
5756
|
* Product Detailed Summary
|
|
5308
5757
|
*/
|
|
@@ -5390,6 +5839,27 @@ export interface ProductSearchResultsModel {
|
|
|
5390
5839
|
*/
|
|
5391
5840
|
'results'?: Array<ProductSummaryDTO>;
|
|
5392
5841
|
}
|
|
5842
|
+
/**
|
|
5843
|
+
* Product Serial Info Response
|
|
5844
|
+
*/
|
|
5845
|
+
export interface ProductSerialInfoDTO {
|
|
5846
|
+
/**
|
|
5847
|
+
* SKU
|
|
5848
|
+
*/
|
|
5849
|
+
'sku'?: string;
|
|
5850
|
+
/**
|
|
5851
|
+
* Product Title
|
|
5852
|
+
*/
|
|
5853
|
+
'title'?: string;
|
|
5854
|
+
/**
|
|
5855
|
+
* Has MAC Address
|
|
5856
|
+
*/
|
|
5857
|
+
'mac'?: boolean;
|
|
5858
|
+
/**
|
|
5859
|
+
* Serial Prefix
|
|
5860
|
+
*/
|
|
5861
|
+
'serialPrefixes'?: Array<string>;
|
|
5862
|
+
}
|
|
5393
5863
|
/**
|
|
5394
5864
|
* Product Serial Info
|
|
5395
5865
|
*/
|
|
@@ -5687,6 +6157,20 @@ export interface ProvisioningRequestEntity {
|
|
|
5687
6157
|
*/
|
|
5688
6158
|
'auth'?: string;
|
|
5689
6159
|
}
|
|
6160
|
+
export interface PutAddCallTariffToCallTariffPlanRequest {
|
|
6161
|
+
'tariffRateMarkup'?: string;
|
|
6162
|
+
'tariffRateDay'?: number;
|
|
6163
|
+
'tariffRateEvening'?: number;
|
|
6164
|
+
'tariffRateWeekend'?: number;
|
|
6165
|
+
'tariffRateMinimum'?: number;
|
|
6166
|
+
'tariffRateSetup'?: number;
|
|
6167
|
+
}
|
|
6168
|
+
export interface PutAddServiceToServicePlanRequest {
|
|
6169
|
+
'customerRate_Markup'?: string;
|
|
6170
|
+
'customerRate_Amount'?: number;
|
|
6171
|
+
'description'?: string | null;
|
|
6172
|
+
'hideOnInvoice'?: boolean | null;
|
|
6173
|
+
}
|
|
5690
6174
|
export interface PutAllocateItemsRequest {
|
|
5691
6175
|
/**
|
|
5692
6176
|
* Items
|
|
@@ -5703,12 +6187,33 @@ export interface PutAllocateItemsRequestItemsInner {
|
|
|
5703
6187
|
*/
|
|
5704
6188
|
'quantity'?: number;
|
|
5705
6189
|
}
|
|
5706
|
-
export interface
|
|
6190
|
+
export interface PutConnectionSearchRequest {
|
|
5707
6191
|
/**
|
|
5708
6192
|
* Customer ID
|
|
5709
6193
|
*/
|
|
5710
6194
|
'customerId'?: number;
|
|
5711
6195
|
}
|
|
6196
|
+
export interface PutGetBaseServicesRequest {
|
|
6197
|
+
'property'?: string;
|
|
6198
|
+
'value'?: string;
|
|
6199
|
+
'serviceCodeAdmin'?: string | null;
|
|
6200
|
+
'description'?: string | null;
|
|
6201
|
+
'dataType'?: string | null;
|
|
6202
|
+
}
|
|
6203
|
+
export interface PutGetCallTariffPlanRequest {
|
|
6204
|
+
'name'?: string;
|
|
6205
|
+
'unknownDestinationsRateType'?: string;
|
|
6206
|
+
'unknownDestinationsRateAmount'?: number;
|
|
6207
|
+
'ngcsAccessChargePerMin'?: number;
|
|
6208
|
+
'ngcsAccessChargePerCall'?: number;
|
|
6209
|
+
}
|
|
6210
|
+
export interface PutGetPriceGroupsRequest {
|
|
6211
|
+
'property'?: string;
|
|
6212
|
+
'value'?: string;
|
|
6213
|
+
'unknownDestinationsRateAmount'?: number;
|
|
6214
|
+
'ngcsAccessChargePerMin'?: number;
|
|
6215
|
+
'ngcsAccessChargePerCall'?: number;
|
|
6216
|
+
}
|
|
5712
6217
|
/**
|
|
5713
6218
|
* RMA Reason Request Model
|
|
5714
6219
|
*/
|
|
@@ -5763,6 +6268,23 @@ export interface RecordingsBackupInfoDTO {
|
|
|
5763
6268
|
*/
|
|
5764
6269
|
'storage'?: TcxRemoteStorageModel | null;
|
|
5765
6270
|
}
|
|
6271
|
+
export interface RecurringCharge {
|
|
6272
|
+
'createdDate'?: string;
|
|
6273
|
+
'id'?: number;
|
|
6274
|
+
'customerId'?: number;
|
|
6275
|
+
'customer': Customer;
|
|
6276
|
+
'phoneNumber': string | null;
|
|
6277
|
+
'description': string | null;
|
|
6278
|
+
'channelPartnerBuy'?: number;
|
|
6279
|
+
'customerCharge'?: number;
|
|
6280
|
+
'frequency'?: number;
|
|
6281
|
+
'startDate': string;
|
|
6282
|
+
'endDate'?: string | null;
|
|
6283
|
+
'quantity'?: number;
|
|
6284
|
+
'accountCode'?: string | null;
|
|
6285
|
+
'filePeriod'?: string | null;
|
|
6286
|
+
'isActive'?: boolean;
|
|
6287
|
+
}
|
|
5766
6288
|
/**
|
|
5767
6289
|
* Remote Storage
|
|
5768
6290
|
*/
|
|
@@ -5955,6 +6477,10 @@ export interface RmaDTO {
|
|
|
5955
6477
|
* RMA Status
|
|
5956
6478
|
*/
|
|
5957
6479
|
'status'?: RmaDTOStatusEnum;
|
|
6480
|
+
/**
|
|
6481
|
+
* RMA Status Text
|
|
6482
|
+
*/
|
|
6483
|
+
'statusText'?: string;
|
|
5958
6484
|
/**
|
|
5959
6485
|
* RMA Approval Status
|
|
5960
6486
|
*/
|
|
@@ -6008,11 +6534,11 @@ export interface RmaItemDTO {
|
|
|
6008
6534
|
/**
|
|
6009
6535
|
* RMA Item MAC Address
|
|
6010
6536
|
*/
|
|
6011
|
-
'macAddress'?: string;
|
|
6537
|
+
'macAddress'?: string | null;
|
|
6012
6538
|
/**
|
|
6013
6539
|
* RMA Item Serial Number
|
|
6014
6540
|
*/
|
|
6015
|
-
'serialNumber'?: string;
|
|
6541
|
+
'serialNumber'?: string | null;
|
|
6016
6542
|
/**
|
|
6017
6543
|
* RMA Item Received Status
|
|
6018
6544
|
*/
|
|
@@ -6021,6 +6547,10 @@ export interface RmaItemDTO {
|
|
|
6021
6547
|
* RMA Item Status
|
|
6022
6548
|
*/
|
|
6023
6549
|
'status'?: RmaItemDTOStatusEnum;
|
|
6550
|
+
/**
|
|
6551
|
+
* RMA Item Status Text
|
|
6552
|
+
*/
|
|
6553
|
+
'statusText'?: string;
|
|
6024
6554
|
}
|
|
6025
6555
|
export declare const RmaItemDTOStatusEnum: {
|
|
6026
6556
|
readonly NUMBER_1: 1;
|
|
@@ -6043,7 +6573,79 @@ export interface RmaItemRequestDTO {
|
|
|
6043
6573
|
/**
|
|
6044
6574
|
* RMA Item Serial Number
|
|
6045
6575
|
*/
|
|
6046
|
-
'serialNumber'?: string;
|
|
6576
|
+
'serialNumber'?: string | null;
|
|
6577
|
+
}
|
|
6578
|
+
/**
|
|
6579
|
+
* RMA Order
|
|
6580
|
+
*/
|
|
6581
|
+
export interface RmaOrderDTO {
|
|
6582
|
+
/**
|
|
6583
|
+
* Order ID
|
|
6584
|
+
*/
|
|
6585
|
+
'id'?: number;
|
|
6586
|
+
/**
|
|
6587
|
+
* Order Reference
|
|
6588
|
+
*/
|
|
6589
|
+
'reference'?: string;
|
|
6590
|
+
/**
|
|
6591
|
+
* Date Time
|
|
6592
|
+
*/
|
|
6593
|
+
'orderDate'?: string;
|
|
6594
|
+
/**
|
|
6595
|
+
* Warranty Expired
|
|
6596
|
+
*/
|
|
6597
|
+
'warrantyExpired'?: boolean;
|
|
6598
|
+
/**
|
|
6599
|
+
* RMA Order Items
|
|
6600
|
+
*/
|
|
6601
|
+
'items'?: Array<RmaOrderItemDTO>;
|
|
6602
|
+
}
|
|
6603
|
+
/**
|
|
6604
|
+
* RMA Order Item
|
|
6605
|
+
*/
|
|
6606
|
+
export interface RmaOrderItemDTO {
|
|
6607
|
+
/**
|
|
6608
|
+
* Item ID
|
|
6609
|
+
*/
|
|
6610
|
+
'itemId'?: number;
|
|
6611
|
+
/**
|
|
6612
|
+
* Item Name
|
|
6613
|
+
*/
|
|
6614
|
+
'name'?: string;
|
|
6615
|
+
'serialInfo'?: ProductSerialInfoDTO;
|
|
6616
|
+
/**
|
|
6617
|
+
* Returned Quantity
|
|
6618
|
+
*/
|
|
6619
|
+
'alreadyReturnedQuantity'?: number;
|
|
6620
|
+
/**
|
|
6621
|
+
* Available Return Quantity
|
|
6622
|
+
*/
|
|
6623
|
+
'availableReturnQuantity'?: number;
|
|
6624
|
+
/**
|
|
6625
|
+
* End of Life
|
|
6626
|
+
*/
|
|
6627
|
+
'endOfLife'?: boolean;
|
|
6628
|
+
/**
|
|
6629
|
+
* Unlikely Return
|
|
6630
|
+
*/
|
|
6631
|
+
'unlikelyReturn'?: boolean;
|
|
6632
|
+
}
|
|
6633
|
+
/**
|
|
6634
|
+
* RMA Order Summary
|
|
6635
|
+
*/
|
|
6636
|
+
export interface RmaOrderSummaryDTO {
|
|
6637
|
+
/**
|
|
6638
|
+
* Order ID
|
|
6639
|
+
*/
|
|
6640
|
+
'id'?: number;
|
|
6641
|
+
/**
|
|
6642
|
+
* Order Reference
|
|
6643
|
+
*/
|
|
6644
|
+
'reference'?: string;
|
|
6645
|
+
/**
|
|
6646
|
+
* Date Time
|
|
6647
|
+
*/
|
|
6648
|
+
'orderDate'?: string;
|
|
6047
6649
|
}
|
|
6048
6650
|
/**
|
|
6049
6651
|
* RMA Replacement Order Item
|
|
@@ -6157,6 +6759,10 @@ export interface RmaSummaryDTO {
|
|
|
6157
6759
|
* RMA Status
|
|
6158
6760
|
*/
|
|
6159
6761
|
'status'?: RmaSummaryDTOStatusEnum;
|
|
6762
|
+
/**
|
|
6763
|
+
* Status Text
|
|
6764
|
+
*/
|
|
6765
|
+
'statusText'?: string;
|
|
6160
6766
|
/**
|
|
6161
6767
|
* RMA Summary Items
|
|
6162
6768
|
*/
|
|
@@ -6296,6 +6902,44 @@ export interface ScopeModel {
|
|
|
6296
6902
|
*/
|
|
6297
6903
|
'description'?: string;
|
|
6298
6904
|
}
|
|
6905
|
+
export interface Sdr {
|
|
6906
|
+
'id'?: number;
|
|
6907
|
+
'customerIdentifier': string | null;
|
|
6908
|
+
'fromDate': string;
|
|
6909
|
+
'fromTime'?: string | null;
|
|
6910
|
+
'toDate'?: string | null;
|
|
6911
|
+
'toTime'?: string | null;
|
|
6912
|
+
'refund'?: string | null;
|
|
6913
|
+
'quantity'?: number;
|
|
6914
|
+
'frequency'?: number;
|
|
6915
|
+
'unitCost'?: number;
|
|
6916
|
+
'totalCost'?: number;
|
|
6917
|
+
'chargeTypeClass'?: string | null;
|
|
6918
|
+
'description': string | null;
|
|
6919
|
+
'serviceID'?: string | null;
|
|
6920
|
+
'accountRef'?: string | null;
|
|
6921
|
+
'carrier'?: string | null;
|
|
6922
|
+
'recordID'?: string | null;
|
|
6923
|
+
'currency'?: string | null;
|
|
6924
|
+
'discountReference'?: string | null;
|
|
6925
|
+
'effectiveDate'?: string | null;
|
|
6926
|
+
'partMonthCost'?: number;
|
|
6927
|
+
'filename': string | null;
|
|
6928
|
+
'contentReference': string | null;
|
|
6929
|
+
'filePeriod': string | null;
|
|
6930
|
+
}
|
|
6931
|
+
export declare const SdrReferenceType: {
|
|
6932
|
+
readonly SipTrunk: "SIP_TRUNK";
|
|
6933
|
+
readonly Broadband: "BROADBAND";
|
|
6934
|
+
readonly Ethernet: "ETHERNET";
|
|
6935
|
+
readonly Mobile: "MOBILE";
|
|
6936
|
+
readonly Wlr: "WLR";
|
|
6937
|
+
readonly Hzn: "HZN";
|
|
6938
|
+
readonly Nts: "NTS";
|
|
6939
|
+
readonly Hosting: "HOSTING";
|
|
6940
|
+
readonly Crm: "CRM";
|
|
6941
|
+
};
|
|
6942
|
+
export type SdrReferenceType = typeof SdrReferenceType[keyof typeof SdrReferenceType];
|
|
6299
6943
|
/**
|
|
6300
6944
|
* Serial Number Request
|
|
6301
6945
|
*/
|
|
@@ -6330,6 +6974,20 @@ export declare const SeriesDTOTypeEnum: {
|
|
|
6330
6974
|
readonly Line: "line";
|
|
6331
6975
|
};
|
|
6332
6976
|
export type SeriesDTOTypeEnum = typeof SeriesDTOTypeEnum[keyof typeof SeriesDTOTypeEnum];
|
|
6977
|
+
export interface Service {
|
|
6978
|
+
'createdDate'?: string;
|
|
6979
|
+
'id'?: number;
|
|
6980
|
+
'servicePlanId'?: number;
|
|
6981
|
+
'servicePlan'?: ServicePlan;
|
|
6982
|
+
'baseServiceId'?: number;
|
|
6983
|
+
'baseService'?: BaseService;
|
|
6984
|
+
'customerRate'?: CustomerRate;
|
|
6985
|
+
'description'?: string | null;
|
|
6986
|
+
'hideOnInvoice'?: boolean;
|
|
6987
|
+
'bureauRate'?: string | null;
|
|
6988
|
+
'filePeriod'?: string | null;
|
|
6989
|
+
'common'?: boolean;
|
|
6990
|
+
}
|
|
6333
6991
|
/**
|
|
6334
6992
|
* Service Health DTO
|
|
6335
6993
|
*/
|
|
@@ -6343,6 +7001,17 @@ export declare const ServiceHealthDTOGlobalStatusEnum: {
|
|
|
6343
7001
|
readonly NUMBER_2: 2;
|
|
6344
7002
|
};
|
|
6345
7003
|
export type ServiceHealthDTOGlobalStatusEnum = typeof ServiceHealthDTOGlobalStatusEnum[keyof typeof ServiceHealthDTOGlobalStatusEnum];
|
|
7004
|
+
export interface ServicePlan {
|
|
7005
|
+
'createdDate'?: string;
|
|
7006
|
+
'id'?: number;
|
|
7007
|
+
'name': string | null;
|
|
7008
|
+
'services'?: Array<Service> | null;
|
|
7009
|
+
'filePeriod'?: string | null;
|
|
7010
|
+
'planGroup'?: string | null;
|
|
7011
|
+
'connectionTypeId'?: number | null;
|
|
7012
|
+
'connectionType'?: ConnectionType;
|
|
7013
|
+
'closed'?: boolean;
|
|
7014
|
+
}
|
|
6346
7015
|
/**
|
|
6347
7016
|
* Service Status DTO
|
|
6348
7017
|
*/
|
|
@@ -7176,6 +7845,19 @@ export interface SmsWhitelistEntity {
|
|
|
7176
7845
|
*/
|
|
7177
7846
|
'fqdn'?: string;
|
|
7178
7847
|
}
|
|
7848
|
+
export interface SpecialService {
|
|
7849
|
+
'createdDate'?: string;
|
|
7850
|
+
'id'?: number;
|
|
7851
|
+
'outboundCliId'?: number;
|
|
7852
|
+
'outboundCli': OutboundCli;
|
|
7853
|
+
'baseService': BaseService;
|
|
7854
|
+
'customerRate': CustomerRate;
|
|
7855
|
+
'description': string | null;
|
|
7856
|
+
'hideOnInvoice'?: boolean;
|
|
7857
|
+
'startPeriod': string;
|
|
7858
|
+
'endPeriod'?: string | null;
|
|
7859
|
+
'filePeriod'?: string | null;
|
|
7860
|
+
}
|
|
7179
7861
|
/**
|
|
7180
7862
|
* DistCourierEntity
|
|
7181
7863
|
*/
|
|
@@ -8221,6 +8903,14 @@ export interface TableRowDTO {
|
|
|
8221
8903
|
*/
|
|
8222
8904
|
'data'?: Array<TableDataDTO>;
|
|
8223
8905
|
}
|
|
8906
|
+
export interface TariffRate {
|
|
8907
|
+
'markup'?: CustomerRateType;
|
|
8908
|
+
'day'?: number;
|
|
8909
|
+
'evening'?: number;
|
|
8910
|
+
'weekend'?: number;
|
|
8911
|
+
'minimum'?: number;
|
|
8912
|
+
'setup'?: number;
|
|
8913
|
+
}
|
|
8224
8914
|
/**
|
|
8225
8915
|
* 3CX Wizard Restore From Backup
|
|
8226
8916
|
*/
|
|
@@ -9631,6 +10321,33 @@ export interface TokenResponseModel {
|
|
|
9631
10321
|
*/
|
|
9632
10322
|
'access_token'?: string;
|
|
9633
10323
|
}
|
|
10324
|
+
export interface UnconnectedSdr {
|
|
10325
|
+
'id'?: number;
|
|
10326
|
+
'sdrId'?: number;
|
|
10327
|
+
'sdr': Sdr;
|
|
10328
|
+
'productCode': string | null;
|
|
10329
|
+
'cli'?: string | null;
|
|
10330
|
+
'outboundCliId'?: number | null;
|
|
10331
|
+
'outboundCli'?: OutboundCli;
|
|
10332
|
+
'servicePlanId'?: number | null;
|
|
10333
|
+
'servicePlan'?: ServicePlan;
|
|
10334
|
+
'serviceId'?: number | null;
|
|
10335
|
+
'service'?: Service;
|
|
10336
|
+
'specialServiceId'?: number | null;
|
|
10337
|
+
'specialService'?: SpecialService;
|
|
10338
|
+
'customerCharge'?: number | null;
|
|
10339
|
+
'customerRate'?: CustomerRate;
|
|
10340
|
+
'description'?: string | null;
|
|
10341
|
+
'hideOnInvoice'?: boolean;
|
|
10342
|
+
'unitCharge'?: number | null;
|
|
10343
|
+
'customerId'?: number | null;
|
|
10344
|
+
'servicePlanName'?: string | null;
|
|
10345
|
+
'serviceCode'?: string | null;
|
|
10346
|
+
'sdrDescription'?: string | null;
|
|
10347
|
+
'sdrCost'?: number | null;
|
|
10348
|
+
'remarks'?: string | null;
|
|
10349
|
+
'filePeriod': string | null;
|
|
10350
|
+
}
|
|
9634
10351
|
/**
|
|
9635
10352
|
* EdTechPro Upgrade Response
|
|
9636
10353
|
*/
|
|
@@ -11326,79 +12043,1561 @@ export type PatchSetPrizePromoStateEnum = typeof PatchSetPrizePromoStateEnum[key
|
|
|
11326
12043
|
*/
|
|
11327
12044
|
export declare const BillingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11328
12045
|
/**
|
|
11329
|
-
*
|
|
11330
|
-
* @
|
|
12046
|
+
* Delete Call Tariff
|
|
12047
|
+
* @param {string} priceGroupName Price Group Name
|
|
11331
12048
|
* @param {*} [options] Override http request option.
|
|
11332
12049
|
* @throws {RequiredError}
|
|
11333
12050
|
*/
|
|
11334
|
-
|
|
12051
|
+
deleteAddCallTariffToCallTariffPlan: (priceGroupName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11335
12052
|
/**
|
|
11336
|
-
*
|
|
11337
|
-
* @param {
|
|
11338
|
-
* @param {number} [
|
|
11339
|
-
* @param {string} [cli] CLI
|
|
11340
|
-
* @param {boolean} [skipDDis] Skip DDIs
|
|
12053
|
+
* Delete Recurring Charges
|
|
12054
|
+
* @param {number} id Recurring Charge ID
|
|
12055
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11341
12056
|
* @param {*} [options] Override http request option.
|
|
11342
12057
|
* @throws {RequiredError}
|
|
11343
12058
|
*/
|
|
11344
|
-
|
|
11345
|
-
};
|
|
11346
|
-
/**
|
|
11347
|
-
* BillingApi - functional programming interface
|
|
11348
|
-
*/
|
|
11349
|
-
export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
12059
|
+
deleteAddRecurringCharge: (id: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11350
12060
|
/**
|
|
11351
|
-
*
|
|
11352
|
-
* @
|
|
12061
|
+
* Delete Service
|
|
12062
|
+
* @param {string} planGroup Plan Group
|
|
12063
|
+
* @param {string} serviceCode Service Code
|
|
11353
12064
|
* @param {*} [options] Override http request option.
|
|
11354
12065
|
* @throws {RequiredError}
|
|
11355
12066
|
*/
|
|
11356
|
-
|
|
11357
|
-
[key: string]: {
|
|
11358
|
-
[key: string]: string;
|
|
11359
|
-
};
|
|
11360
|
-
}>>;
|
|
12067
|
+
deleteAddServiceToServicePlan: (planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11361
12068
|
/**
|
|
11362
|
-
*
|
|
11363
|
-
* @param {
|
|
11364
|
-
* @param {number} [id] Connection ID
|
|
11365
|
-
* @param {string} [cli] CLI
|
|
11366
|
-
* @param {boolean} [skipDDis] Skip DDIs
|
|
12069
|
+
* Delete Customer
|
|
12070
|
+
* @param {number} [billCustomerId] Customer ID
|
|
11367
12071
|
* @param {*} [options] Override http request option.
|
|
11368
12072
|
* @throws {RequiredError}
|
|
11369
12073
|
*/
|
|
11370
|
-
|
|
11371
|
-
};
|
|
11372
|
-
/**
|
|
11373
|
-
* BillingApi - factory interface
|
|
11374
|
-
*/
|
|
11375
|
-
export declare const BillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
12074
|
+
deleteCloseAccount: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11376
12075
|
/**
|
|
11377
|
-
*
|
|
11378
|
-
* @
|
|
12076
|
+
* Delete Base Service
|
|
12077
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
11379
12078
|
* @param {*} [options] Override http request option.
|
|
11380
12079
|
* @throws {RequiredError}
|
|
11381
12080
|
*/
|
|
11382
|
-
|
|
11383
|
-
[key: string]: {
|
|
11384
|
-
[key: string]: string;
|
|
11385
|
-
};
|
|
11386
|
-
}>;
|
|
12081
|
+
deleteGetBaseServices: (baseServiceId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11387
12082
|
/**
|
|
11388
|
-
*
|
|
11389
|
-
* @param {
|
|
11390
|
-
* @param {
|
|
12083
|
+
* Delete Call Tariff Plan
|
|
12084
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12085
|
+
* @param {*} [options] Override http request option.
|
|
12086
|
+
* @throws {RequiredError}
|
|
12087
|
+
*/
|
|
12088
|
+
deleteGetCallTariffPlan: (callTariffPlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12089
|
+
/**
|
|
12090
|
+
* Delete Price Group
|
|
12091
|
+
* @param {number} priceGroupId Price Group ID
|
|
12092
|
+
* @param {*} [options] Override http request option.
|
|
12093
|
+
* @throws {RequiredError}
|
|
12094
|
+
*/
|
|
12095
|
+
deleteGetPriceGroups: (priceGroupId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12096
|
+
/**
|
|
12097
|
+
* Delete Service Plan
|
|
12098
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12099
|
+
* @param {*} [options] Override http request option.
|
|
12100
|
+
* @throws {RequiredError}
|
|
12101
|
+
*/
|
|
12102
|
+
deleteGetServicePlan: (servicePlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12103
|
+
/**
|
|
12104
|
+
* Get Recurring Charges
|
|
12105
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12106
|
+
* @param {*} [options] Override http request option.
|
|
12107
|
+
* @throws {RequiredError}
|
|
12108
|
+
*/
|
|
12109
|
+
getAddRecurringCharge: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12110
|
+
/**
|
|
12111
|
+
* Get Service
|
|
12112
|
+
* @param {number} id Service ID
|
|
12113
|
+
* @param {*} [options] Override http request option.
|
|
12114
|
+
* @throws {RequiredError}
|
|
12115
|
+
*/
|
|
12116
|
+
getAddServiceToServicePlan: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12117
|
+
/**
|
|
12118
|
+
* Get SIP Trunk DDIs
|
|
12119
|
+
* @param {number} [connectionId] Connection ID
|
|
12120
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12121
|
+
* @param {*} [options] Override http request option.
|
|
12122
|
+
* @throws {RequiredError}
|
|
12123
|
+
*/
|
|
12124
|
+
getAddSipTrunkDDIs: (connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12125
|
+
/**
|
|
12126
|
+
* Connection Search
|
|
12127
|
+
* @param {string} search Search
|
|
12128
|
+
* @param {*} [options] Override http request option.
|
|
12129
|
+
* @throws {RequiredError}
|
|
12130
|
+
*/
|
|
12131
|
+
getConnectionSearch: (search: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12132
|
+
/**
|
|
12133
|
+
* Get Billing Customers
|
|
12134
|
+
* @summary Get Billing Customers
|
|
12135
|
+
* @param {*} [options] Override http request option.
|
|
12136
|
+
* @throws {RequiredError}
|
|
12137
|
+
*/
|
|
12138
|
+
getGetAllCustomer: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12139
|
+
/**
|
|
12140
|
+
* Get All MT SIP Trunks
|
|
12141
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12142
|
+
* @param {*} [options] Override http request option.
|
|
12143
|
+
* @throws {RequiredError}
|
|
12144
|
+
*/
|
|
12145
|
+
getGetAllMtSipTrunks: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12146
|
+
/**
|
|
12147
|
+
* Get All SIP Trunks
|
|
12148
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12149
|
+
* @param {*} [options] Override http request option.
|
|
12150
|
+
* @throws {RequiredError}
|
|
12151
|
+
*/
|
|
12152
|
+
getGetAllSipTrunks: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12153
|
+
/**
|
|
12154
|
+
* Get Base Services
|
|
12155
|
+
* @param {*} [options] Override http request option.
|
|
12156
|
+
* @throws {RequiredError}
|
|
12157
|
+
*/
|
|
12158
|
+
getGetBaseServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12159
|
+
/**
|
|
12160
|
+
* Get Customer
|
|
12161
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12162
|
+
* @param {*} [options] Override http request option.
|
|
12163
|
+
* @throws {RequiredError}
|
|
12164
|
+
*/
|
|
12165
|
+
getGetBillingCustomerDetails: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12166
|
+
/**
|
|
12167
|
+
* Get Bundle Calls With Cost
|
|
12168
|
+
* @param {*} [options] Override http request option.
|
|
12169
|
+
* @throws {RequiredError}
|
|
12170
|
+
*/
|
|
12171
|
+
getGetBundleCallsWithCost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12172
|
+
/**
|
|
12173
|
+
* Get Call Tariff
|
|
12174
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12175
|
+
* @param {*} [options] Override http request option.
|
|
12176
|
+
* @throws {RequiredError}
|
|
12177
|
+
*/
|
|
12178
|
+
getGetCallTariffPlan: (callTariffPlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12179
|
+
/**
|
|
12180
|
+
* Get Call Tariffs
|
|
12181
|
+
* @param {*} [options] Override http request option.
|
|
12182
|
+
* @throws {RequiredError}
|
|
12183
|
+
*/
|
|
12184
|
+
getGetCallTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12185
|
+
/**
|
|
12186
|
+
* Get Call Tariffs Detailed
|
|
12187
|
+
* @param {*} [options] Override http request option.
|
|
12188
|
+
* @throws {RequiredError}
|
|
12189
|
+
*/
|
|
12190
|
+
getGetCallTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12191
|
+
/**
|
|
12192
|
+
* Get Children
|
|
12193
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12194
|
+
* @param {*} [options] Override http request option.
|
|
12195
|
+
* @throws {RequiredError}
|
|
12196
|
+
*/
|
|
12197
|
+
getGetChildren: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12198
|
+
/**
|
|
12199
|
+
* Get Connection
|
|
12200
|
+
* @param {number} id Connection ID
|
|
12201
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12202
|
+
* @param {*} [options] Override http request option.
|
|
12203
|
+
* @throws {RequiredError}
|
|
12204
|
+
*/
|
|
12205
|
+
getGetConnection: (id: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12206
|
+
/**
|
|
12207
|
+
* Get Connections
|
|
12208
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
12209
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12210
|
+
* @param {*} [options] Override http request option.
|
|
12211
|
+
* @throws {RequiredError}
|
|
12212
|
+
*/
|
|
12213
|
+
getGetConnections: (type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12214
|
+
/**
|
|
12215
|
+
* Get Customer (Global)
|
|
12216
|
+
* @param {string} [accountId] Account ID
|
|
12217
|
+
* @param {number} [customerId] Customer ID
|
|
12218
|
+
* @param {string} [customerCode] Customer Code
|
|
12219
|
+
* @param {*} [options] Override http request option.
|
|
12220
|
+
* @throws {RequiredError}
|
|
12221
|
+
*/
|
|
12222
|
+
getGetCustomer: (accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12223
|
+
/**
|
|
12224
|
+
* Get Inbound Tariffs
|
|
12225
|
+
* @param {*} [options] Override http request option.
|
|
12226
|
+
* @throws {RequiredError}
|
|
12227
|
+
*/
|
|
12228
|
+
getGetInboundTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12229
|
+
/**
|
|
12230
|
+
* Get Inbound Tariffs Detailed
|
|
12231
|
+
* @param {*} [options] Override http request option.
|
|
12232
|
+
* @throws {RequiredError}
|
|
12233
|
+
*/
|
|
12234
|
+
getGetInboundTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12235
|
+
/**
|
|
12236
|
+
* Get Price Groups
|
|
12237
|
+
* @param {*} [options] Override http request option.
|
|
12238
|
+
* @throws {RequiredError}
|
|
12239
|
+
*/
|
|
12240
|
+
getGetPriceGroups: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12241
|
+
/**
|
|
12242
|
+
* Get Service Plan
|
|
12243
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12244
|
+
* @param {*} [options] Override http request option.
|
|
12245
|
+
* @throws {RequiredError}
|
|
12246
|
+
*/
|
|
12247
|
+
getGetServicePlan: (servicePlanId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12248
|
+
/**
|
|
12249
|
+
* Get Service Plans
|
|
12250
|
+
* @param {*} [options] Override http request option.
|
|
12251
|
+
* @throws {RequiredError}
|
|
12252
|
+
*/
|
|
12253
|
+
getGetServicePlans: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12254
|
+
/**
|
|
12255
|
+
* Get Service Plans Detailed
|
|
12256
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
12257
|
+
* @param {*} [options] Override http request option.
|
|
12258
|
+
* @throws {RequiredError}
|
|
12259
|
+
*/
|
|
12260
|
+
getGetServicesPlanDetails: (type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12261
|
+
/**
|
|
12262
|
+
* Get SIP Trunk List
|
|
12263
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12264
|
+
* @param {*} [options] Override http request option.
|
|
12265
|
+
* @throws {RequiredError}
|
|
12266
|
+
*/
|
|
12267
|
+
getGetSipTrunkList: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12268
|
+
/**
|
|
12269
|
+
* Get SIP Trunk Billing
|
|
12270
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12271
|
+
* @param {*} [options] Override http request option.
|
|
12272
|
+
* @throws {RequiredError}
|
|
12273
|
+
*/
|
|
12274
|
+
getGetSipTrunksBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12275
|
+
/**
|
|
12276
|
+
* Get Unconnected Calls
|
|
12277
|
+
* @param {*} [options] Override http request option.
|
|
12278
|
+
* @throws {RequiredError}
|
|
12279
|
+
*/
|
|
12280
|
+
getGetUnconnectedCalls: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12281
|
+
/**
|
|
12282
|
+
* Get Unconnected Services
|
|
12283
|
+
* @param {*} [options] Override http request option.
|
|
12284
|
+
* @throws {RequiredError}
|
|
12285
|
+
*/
|
|
12286
|
+
getGetUnconnectedServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12287
|
+
/**
|
|
12288
|
+
* Is Bundle Customer
|
|
12289
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12290
|
+
* @param {*} [options] Override http request option.
|
|
12291
|
+
* @throws {RequiredError}
|
|
12292
|
+
*/
|
|
12293
|
+
getIsBundleCustomer: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12294
|
+
/**
|
|
12295
|
+
* Add Broadband
|
|
12296
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
12297
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12298
|
+
* @param {*} [options] Override http request option.
|
|
12299
|
+
* @throws {RequiredError}
|
|
12300
|
+
*/
|
|
12301
|
+
postAddBroadband: (postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12302
|
+
/**
|
|
12303
|
+
* Add Call Tariff To Call Tariff Plan
|
|
12304
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
12305
|
+
* @param {*} [options] Override http request option.
|
|
12306
|
+
* @throws {RequiredError}
|
|
12307
|
+
*/
|
|
12308
|
+
postAddCallTariffToCallTariffPlan: (postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12309
|
+
/**
|
|
12310
|
+
* Add Child Customer
|
|
12311
|
+
* @param {ContactDetail} contactDetail
|
|
12312
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12313
|
+
* @param {number} [customerId] Child Customer ID
|
|
12314
|
+
* @param {*} [options] Override http request option.
|
|
12315
|
+
* @throws {RequiredError}
|
|
12316
|
+
*/
|
|
12317
|
+
postAddChildCustomer: (contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12318
|
+
/**
|
|
12319
|
+
* Add Ethernet
|
|
12320
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
12321
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12322
|
+
* @param {*} [options] Override http request option.
|
|
12323
|
+
* @throws {RequiredError}
|
|
12324
|
+
*/
|
|
12325
|
+
postAddEthernet: (postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12326
|
+
/**
|
|
12327
|
+
* Add Recurring Charge
|
|
12328
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
12329
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12330
|
+
* @param {*} [options] Override http request option.
|
|
12331
|
+
* @throws {RequiredError}
|
|
12332
|
+
*/
|
|
12333
|
+
postAddRecurringCharge: (postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12334
|
+
/**
|
|
12335
|
+
* Add Service To Service Plan
|
|
12336
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
12337
|
+
* @param {*} [options] Override http request option.
|
|
12338
|
+
* @throws {RequiredError}
|
|
12339
|
+
*/
|
|
12340
|
+
postAddServiceToServicePlan: (postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12341
|
+
/**
|
|
12342
|
+
* Add SIP Trunk DDIs
|
|
12343
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
12344
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12345
|
+
* @param {*} [options] Override http request option.
|
|
12346
|
+
* @throws {RequiredError}
|
|
12347
|
+
*/
|
|
12348
|
+
postAddSipTrunkDDIs: (postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12349
|
+
/**
|
|
12350
|
+
* Disconnect Connection
|
|
12351
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
12352
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12353
|
+
* @param {*} [options] Override http request option.
|
|
12354
|
+
* @throws {RequiredError}
|
|
12355
|
+
*/
|
|
12356
|
+
postDisconnectConnection: (postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12357
|
+
/**
|
|
12358
|
+
* Disconnect DDI
|
|
12359
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
12360
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12361
|
+
* @param {*} [options] Override http request option.
|
|
12362
|
+
* @throws {RequiredError}
|
|
12363
|
+
*/
|
|
12364
|
+
postDisconnectDDI: (postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12365
|
+
/**
|
|
12366
|
+
* Add Base Service
|
|
12367
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
12368
|
+
* @param {*} [options] Override http request option.
|
|
12369
|
+
* @throws {RequiredError}
|
|
12370
|
+
*/
|
|
12371
|
+
postGetBaseServices: (postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12372
|
+
/**
|
|
12373
|
+
* Add Call Tariff
|
|
12374
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12375
|
+
* @param {*} [options] Override http request option.
|
|
12376
|
+
* @throws {RequiredError}
|
|
12377
|
+
*/
|
|
12378
|
+
postGetCallTariffPlan: (putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12379
|
+
/**
|
|
12380
|
+
* Add Connection
|
|
12381
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12382
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
12383
|
+
* @param {*} [options] Override http request option.
|
|
12384
|
+
* @throws {RequiredError}
|
|
12385
|
+
*/
|
|
12386
|
+
postGetConnections: (billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12387
|
+
/**
|
|
12388
|
+
* Add Price Group
|
|
12389
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
12390
|
+
* @param {*} [options] Override http request option.
|
|
12391
|
+
* @throws {RequiredError}
|
|
12392
|
+
*/
|
|
12393
|
+
postGetPriceGroups: (postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12394
|
+
/**
|
|
12395
|
+
* Add Service Plan
|
|
12396
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
12397
|
+
* @param {*} [options] Override http request option.
|
|
12398
|
+
* @throws {RequiredError}
|
|
12399
|
+
*/
|
|
12400
|
+
postGetServicePlans: (postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12401
|
+
/**
|
|
12402
|
+
* Add SIP Trunk billing
|
|
12403
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
12404
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12405
|
+
* @param {*} [options] Override http request option.
|
|
12406
|
+
* @throws {RequiredError}
|
|
12407
|
+
*/
|
|
12408
|
+
postGetSipTrunksBilling: (postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12409
|
+
/**
|
|
12410
|
+
* Send Invoices
|
|
12411
|
+
* @param {*} [options] Override http request option.
|
|
12412
|
+
* @throws {RequiredError}
|
|
12413
|
+
*/
|
|
12414
|
+
postSendInvoices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12415
|
+
/**
|
|
12416
|
+
* Update Connection
|
|
12417
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
12418
|
+
* @param {number} [connectionId] Connection ID
|
|
12419
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12420
|
+
* @param {*} [options] Override http request option.
|
|
12421
|
+
* @throws {RequiredError}
|
|
12422
|
+
*/
|
|
12423
|
+
postUpdateConnection: (postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12424
|
+
/**
|
|
12425
|
+
* Update Recurring Charge
|
|
12426
|
+
* @param {number} id Recurring Charge ID
|
|
12427
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
12428
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12429
|
+
* @param {*} [options] Override http request option.
|
|
12430
|
+
* @throws {RequiredError}
|
|
12431
|
+
*/
|
|
12432
|
+
postUpdateRecurringCharge: (id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12433
|
+
/**
|
|
12434
|
+
* Update Call Tariff
|
|
12435
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
12436
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
12437
|
+
* @param {*} [options] Override http request option.
|
|
12438
|
+
* @throws {RequiredError}
|
|
12439
|
+
*/
|
|
12440
|
+
putAddCallTariffToCallTariffPlan: (callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12441
|
+
/**
|
|
12442
|
+
* Update Service
|
|
12443
|
+
* @param {number} id Service ID
|
|
12444
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
12445
|
+
* @param {*} [options] Override http request option.
|
|
12446
|
+
* @throws {RequiredError}
|
|
12447
|
+
*/
|
|
12448
|
+
putAddServiceToServicePlan: (id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12449
|
+
/**
|
|
12450
|
+
* Transfer Billing Connection
|
|
12451
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
12452
|
+
* @param {number} [id] Connection ID
|
|
12453
|
+
* @param {string} [cli] CLI
|
|
12454
|
+
* @param {boolean} [skipDDis] Skip DDIs
|
|
12455
|
+
* @param {*} [options] Override http request option.
|
|
12456
|
+
* @throws {RequiredError}
|
|
12457
|
+
*/
|
|
12458
|
+
putConnectionSearch: (putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12459
|
+
/**
|
|
12460
|
+
* Convert Child To Parent
|
|
12461
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12462
|
+
* @param {*} [options] Override http request option.
|
|
12463
|
+
* @throws {RequiredError}
|
|
12464
|
+
*/
|
|
12465
|
+
putConvertChildToParent: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12466
|
+
/**
|
|
12467
|
+
* Disable Bundles
|
|
12468
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12469
|
+
* @param {*} [options] Override http request option.
|
|
12470
|
+
* @throws {RequiredError}
|
|
12471
|
+
*/
|
|
12472
|
+
putDisableBundles: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12473
|
+
/**
|
|
12474
|
+
* Disable DDI Billing
|
|
12475
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12476
|
+
* @param {*} [options] Override http request option.
|
|
12477
|
+
* @throws {RequiredError}
|
|
12478
|
+
*/
|
|
12479
|
+
putDisableDdiBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12480
|
+
/**
|
|
12481
|
+
* Enable Bundles
|
|
12482
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12483
|
+
* @param {*} [options] Override http request option.
|
|
12484
|
+
* @throws {RequiredError}
|
|
12485
|
+
*/
|
|
12486
|
+
putEnableBundles: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12487
|
+
/**
|
|
12488
|
+
* Enable DDI Billing
|
|
12489
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12490
|
+
* @param {*} [options] Override http request option.
|
|
12491
|
+
* @throws {RequiredError}
|
|
12492
|
+
*/
|
|
12493
|
+
putEnableDdiBilling: (billCustomerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12494
|
+
/**
|
|
12495
|
+
* Update Base Service
|
|
12496
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
12497
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
12498
|
+
* @param {*} [options] Override http request option.
|
|
12499
|
+
* @throws {RequiredError}
|
|
12500
|
+
*/
|
|
12501
|
+
putGetBaseServices: (baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12502
|
+
/**
|
|
12503
|
+
* Update Call Tariff
|
|
12504
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12505
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12506
|
+
* @param {*} [options] Override http request option.
|
|
12507
|
+
* @throws {RequiredError}
|
|
12508
|
+
*/
|
|
12509
|
+
putGetCallTariffPlan: (callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12510
|
+
/**
|
|
12511
|
+
* Update Connection
|
|
12512
|
+
* @param {number} connectionId Connection ID
|
|
12513
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12514
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
12515
|
+
* @param {*} [options] Override http request option.
|
|
12516
|
+
* @throws {RequiredError}
|
|
12517
|
+
*/
|
|
12518
|
+
putGetConnections: (connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12519
|
+
/**
|
|
12520
|
+
* Update Price Group
|
|
12521
|
+
* @param {number} priceGroupId Price Group ID
|
|
12522
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
12523
|
+
* @param {*} [options] Override http request option.
|
|
12524
|
+
* @throws {RequiredError}
|
|
12525
|
+
*/
|
|
12526
|
+
putGetPriceGroups: (priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12527
|
+
};
|
|
12528
|
+
/**
|
|
12529
|
+
* BillingApi - functional programming interface
|
|
12530
|
+
*/
|
|
12531
|
+
export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
12532
|
+
/**
|
|
12533
|
+
* Delete Call Tariff
|
|
12534
|
+
* @param {string} priceGroupName Price Group Name
|
|
12535
|
+
* @param {*} [options] Override http request option.
|
|
12536
|
+
* @throws {RequiredError}
|
|
12537
|
+
*/
|
|
12538
|
+
deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12539
|
+
/**
|
|
12540
|
+
* Delete Recurring Charges
|
|
12541
|
+
* @param {number} id Recurring Charge ID
|
|
12542
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12543
|
+
* @param {*} [options] Override http request option.
|
|
12544
|
+
* @throws {RequiredError}
|
|
12545
|
+
*/
|
|
12546
|
+
deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
12547
|
+
/**
|
|
12548
|
+
* Delete Service
|
|
12549
|
+
* @param {string} planGroup Plan Group
|
|
12550
|
+
* @param {string} serviceCode Service Code
|
|
12551
|
+
* @param {*} [options] Override http request option.
|
|
12552
|
+
* @throws {RequiredError}
|
|
12553
|
+
*/
|
|
12554
|
+
deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12555
|
+
/**
|
|
12556
|
+
* Delete Customer
|
|
12557
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12558
|
+
* @param {*} [options] Override http request option.
|
|
12559
|
+
* @throws {RequiredError}
|
|
12560
|
+
*/
|
|
12561
|
+
deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
12562
|
+
/**
|
|
12563
|
+
* Delete Base Service
|
|
12564
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
12565
|
+
* @param {*} [options] Override http request option.
|
|
12566
|
+
* @throws {RequiredError}
|
|
12567
|
+
*/
|
|
12568
|
+
deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12569
|
+
/**
|
|
12570
|
+
* Delete Call Tariff Plan
|
|
12571
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12572
|
+
* @param {*} [options] Override http request option.
|
|
12573
|
+
* @throws {RequiredError}
|
|
12574
|
+
*/
|
|
12575
|
+
deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12576
|
+
/**
|
|
12577
|
+
* Delete Price Group
|
|
12578
|
+
* @param {number} priceGroupId Price Group ID
|
|
12579
|
+
* @param {*} [options] Override http request option.
|
|
12580
|
+
* @throws {RequiredError}
|
|
12581
|
+
*/
|
|
12582
|
+
deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12583
|
+
/**
|
|
12584
|
+
* Delete Service Plan
|
|
12585
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12586
|
+
* @param {*} [options] Override http request option.
|
|
12587
|
+
* @throws {RequiredError}
|
|
12588
|
+
*/
|
|
12589
|
+
deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
12590
|
+
/**
|
|
12591
|
+
* Get Recurring Charges
|
|
12592
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12593
|
+
* @param {*} [options] Override http request option.
|
|
12594
|
+
* @throws {RequiredError}
|
|
12595
|
+
*/
|
|
12596
|
+
getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RecurringCharge>>>;
|
|
12597
|
+
/**
|
|
12598
|
+
* Get Service
|
|
12599
|
+
* @param {number} id Service ID
|
|
12600
|
+
* @param {*} [options] Override http request option.
|
|
12601
|
+
* @throws {RequiredError}
|
|
12602
|
+
*/
|
|
12603
|
+
getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
12604
|
+
/**
|
|
12605
|
+
* Get SIP Trunk DDIs
|
|
12606
|
+
* @param {number} [connectionId] Connection ID
|
|
12607
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12608
|
+
* @param {*} [options] Override http request option.
|
|
12609
|
+
* @throws {RequiredError}
|
|
12610
|
+
*/
|
|
12611
|
+
getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
12612
|
+
/**
|
|
12613
|
+
* Connection Search
|
|
12614
|
+
* @param {string} search Search
|
|
12615
|
+
* @param {*} [options] Override http request option.
|
|
12616
|
+
* @throws {RequiredError}
|
|
12617
|
+
*/
|
|
12618
|
+
getConnectionSearch(search: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
12619
|
+
/**
|
|
12620
|
+
* Get Billing Customers
|
|
12621
|
+
* @summary Get Billing Customers
|
|
12622
|
+
* @param {*} [options] Override http request option.
|
|
12623
|
+
* @throws {RequiredError}
|
|
12624
|
+
*/
|
|
12625
|
+
getGetAllCustomer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
12626
|
+
[key: string]: {
|
|
12627
|
+
[key: string]: string;
|
|
12628
|
+
};
|
|
12629
|
+
}>>;
|
|
12630
|
+
/**
|
|
12631
|
+
* Get All MT SIP Trunks
|
|
12632
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12633
|
+
* @param {*} [options] Override http request option.
|
|
12634
|
+
* @throws {RequiredError}
|
|
12635
|
+
*/
|
|
12636
|
+
getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
|
|
12637
|
+
/**
|
|
12638
|
+
* Get All SIP Trunks
|
|
12639
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12640
|
+
* @param {*} [options] Override http request option.
|
|
12641
|
+
* @throws {RequiredError}
|
|
12642
|
+
*/
|
|
12643
|
+
getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
|
|
12644
|
+
/**
|
|
12645
|
+
* Get Base Services
|
|
12646
|
+
* @param {*} [options] Override http request option.
|
|
12647
|
+
* @throws {RequiredError}
|
|
12648
|
+
*/
|
|
12649
|
+
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseService>>>;
|
|
12650
|
+
/**
|
|
12651
|
+
* Get Customer
|
|
12652
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12653
|
+
* @param {*} [options] Override http request option.
|
|
12654
|
+
* @throws {RequiredError}
|
|
12655
|
+
*/
|
|
12656
|
+
getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
12657
|
+
/**
|
|
12658
|
+
* Get Bundle Calls With Cost
|
|
12659
|
+
* @param {*} [options] Override http request option.
|
|
12660
|
+
* @throws {RequiredError}
|
|
12661
|
+
*/
|
|
12662
|
+
getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
|
|
12663
|
+
/**
|
|
12664
|
+
* Get Call Tariff
|
|
12665
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12666
|
+
* @param {*} [options] Override http request option.
|
|
12667
|
+
* @throws {RequiredError}
|
|
12668
|
+
*/
|
|
12669
|
+
getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
12670
|
+
/**
|
|
12671
|
+
* Get Call Tariffs
|
|
12672
|
+
* @param {*} [options] Override http request option.
|
|
12673
|
+
* @throws {RequiredError}
|
|
12674
|
+
*/
|
|
12675
|
+
getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
|
|
12676
|
+
/**
|
|
12677
|
+
* Get Call Tariffs Detailed
|
|
12678
|
+
* @param {*} [options] Override http request option.
|
|
12679
|
+
* @throws {RequiredError}
|
|
12680
|
+
*/
|
|
12681
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
|
|
12682
|
+
/**
|
|
12683
|
+
* Get Children
|
|
12684
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12685
|
+
* @param {*} [options] Override http request option.
|
|
12686
|
+
* @throws {RequiredError}
|
|
12687
|
+
*/
|
|
12688
|
+
getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
|
|
12689
|
+
/**
|
|
12690
|
+
* Get Connection
|
|
12691
|
+
* @param {number} id Connection ID
|
|
12692
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12693
|
+
* @param {*} [options] Override http request option.
|
|
12694
|
+
* @throws {RequiredError}
|
|
12695
|
+
*/
|
|
12696
|
+
getGetConnection(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12697
|
+
/**
|
|
12698
|
+
* Get Connections
|
|
12699
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
12700
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12701
|
+
* @param {*} [options] Override http request option.
|
|
12702
|
+
* @throws {RequiredError}
|
|
12703
|
+
*/
|
|
12704
|
+
getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
12705
|
+
/**
|
|
12706
|
+
* Get Customer (Global)
|
|
12707
|
+
* @param {string} [accountId] Account ID
|
|
12708
|
+
* @param {number} [customerId] Customer ID
|
|
12709
|
+
* @param {string} [customerCode] Customer Code
|
|
12710
|
+
* @param {*} [options] Override http request option.
|
|
12711
|
+
* @throws {RequiredError}
|
|
12712
|
+
*/
|
|
12713
|
+
getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
12714
|
+
/**
|
|
12715
|
+
* Get Inbound Tariffs
|
|
12716
|
+
* @param {*} [options] Override http request option.
|
|
12717
|
+
* @throws {RequiredError}
|
|
12718
|
+
*/
|
|
12719
|
+
getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
12720
|
+
/**
|
|
12721
|
+
* Get Inbound Tariffs Detailed
|
|
12722
|
+
* @param {*} [options] Override http request option.
|
|
12723
|
+
* @throws {RequiredError}
|
|
12724
|
+
*/
|
|
12725
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InboundTariffPlanResponse>>>;
|
|
12726
|
+
/**
|
|
12727
|
+
* Get Price Groups
|
|
12728
|
+
* @param {*} [options] Override http request option.
|
|
12729
|
+
* @throws {RequiredError}
|
|
12730
|
+
*/
|
|
12731
|
+
getGetPriceGroups(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PriceGroup>>>;
|
|
12732
|
+
/**
|
|
12733
|
+
* Get Service Plan
|
|
12734
|
+
* @param {number} servicePlanId Service Plan ID
|
|
12735
|
+
* @param {*} [options] Override http request option.
|
|
12736
|
+
* @throws {RequiredError}
|
|
12737
|
+
*/
|
|
12738
|
+
getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServicePlan>>;
|
|
12739
|
+
/**
|
|
12740
|
+
* Get Service Plans
|
|
12741
|
+
* @param {*} [options] Override http request option.
|
|
12742
|
+
* @throws {RequiredError}
|
|
12743
|
+
*/
|
|
12744
|
+
getGetServicePlans(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
|
|
12745
|
+
/**
|
|
12746
|
+
* Get Service Plans Detailed
|
|
12747
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
12748
|
+
* @param {*} [options] Override http request option.
|
|
12749
|
+
* @throws {RequiredError}
|
|
12750
|
+
*/
|
|
12751
|
+
getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
|
|
12752
|
+
/**
|
|
12753
|
+
* Get SIP Trunk List
|
|
12754
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12755
|
+
* @param {*} [options] Override http request option.
|
|
12756
|
+
* @throws {RequiredError}
|
|
12757
|
+
*/
|
|
12758
|
+
getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Array<string>>>>;
|
|
12759
|
+
/**
|
|
12760
|
+
* Get SIP Trunk Billing
|
|
12761
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12762
|
+
* @param {*} [options] Override http request option.
|
|
12763
|
+
* @throws {RequiredError}
|
|
12764
|
+
*/
|
|
12765
|
+
getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
12766
|
+
/**
|
|
12767
|
+
* Get Unconnected Calls
|
|
12768
|
+
* @param {*} [options] Override http request option.
|
|
12769
|
+
* @throws {RequiredError}
|
|
12770
|
+
*/
|
|
12771
|
+
getGetUnconnectedCalls(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProcessedCdr>>>;
|
|
12772
|
+
/**
|
|
12773
|
+
* Get Unconnected Services
|
|
12774
|
+
* @param {*} [options] Override http request option.
|
|
12775
|
+
* @throws {RequiredError}
|
|
12776
|
+
*/
|
|
12777
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UnconnectedSdr>>>;
|
|
12778
|
+
/**
|
|
12779
|
+
* Is Bundle Customer
|
|
12780
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12781
|
+
* @param {*} [options] Override http request option.
|
|
12782
|
+
* @throws {RequiredError}
|
|
12783
|
+
*/
|
|
12784
|
+
getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12785
|
+
/**
|
|
12786
|
+
* Add Broadband
|
|
12787
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
12788
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12789
|
+
* @param {*} [options] Override http request option.
|
|
12790
|
+
* @throws {RequiredError}
|
|
12791
|
+
*/
|
|
12792
|
+
postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12793
|
+
/**
|
|
12794
|
+
* Add Call Tariff To Call Tariff Plan
|
|
12795
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
12796
|
+
* @param {*} [options] Override http request option.
|
|
12797
|
+
* @throws {RequiredError}
|
|
12798
|
+
*/
|
|
12799
|
+
postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
12800
|
+
/**
|
|
12801
|
+
* Add Child Customer
|
|
12802
|
+
* @param {ContactDetail} contactDetail
|
|
12803
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12804
|
+
* @param {number} [customerId] Child Customer ID
|
|
12805
|
+
* @param {*} [options] Override http request option.
|
|
12806
|
+
* @throws {RequiredError}
|
|
12807
|
+
*/
|
|
12808
|
+
postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
12809
|
+
/**
|
|
12810
|
+
* Add Ethernet
|
|
12811
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
12812
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12813
|
+
* @param {*} [options] Override http request option.
|
|
12814
|
+
* @throws {RequiredError}
|
|
12815
|
+
*/
|
|
12816
|
+
postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12817
|
+
/**
|
|
12818
|
+
* Add Recurring Charge
|
|
12819
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
12820
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12821
|
+
* @param {*} [options] Override http request option.
|
|
12822
|
+
* @throws {RequiredError}
|
|
12823
|
+
*/
|
|
12824
|
+
postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecurringCharge>>;
|
|
12825
|
+
/**
|
|
12826
|
+
* Add Service To Service Plan
|
|
12827
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
12828
|
+
* @param {*} [options] Override http request option.
|
|
12829
|
+
* @throws {RequiredError}
|
|
12830
|
+
*/
|
|
12831
|
+
postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
12832
|
+
/**
|
|
12833
|
+
* Add SIP Trunk DDIs
|
|
12834
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
12835
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12836
|
+
* @param {*} [options] Override http request option.
|
|
12837
|
+
* @throws {RequiredError}
|
|
12838
|
+
*/
|
|
12839
|
+
postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OutboundCli>>>;
|
|
12840
|
+
/**
|
|
12841
|
+
* Disconnect Connection
|
|
12842
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
12843
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12844
|
+
* @param {*} [options] Override http request option.
|
|
12845
|
+
* @throws {RequiredError}
|
|
12846
|
+
*/
|
|
12847
|
+
postDisconnectConnection(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
12848
|
+
/**
|
|
12849
|
+
* Disconnect DDI
|
|
12850
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
12851
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12852
|
+
* @param {*} [options] Override http request option.
|
|
12853
|
+
* @throws {RequiredError}
|
|
12854
|
+
*/
|
|
12855
|
+
postDisconnectDDI(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>>;
|
|
12856
|
+
/**
|
|
12857
|
+
* Add Base Service
|
|
12858
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
12859
|
+
* @param {*} [options] Override http request option.
|
|
12860
|
+
* @throws {RequiredError}
|
|
12861
|
+
*/
|
|
12862
|
+
postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
12863
|
+
/**
|
|
12864
|
+
* Add Call Tariff
|
|
12865
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12866
|
+
* @param {*} [options] Override http request option.
|
|
12867
|
+
* @throws {RequiredError}
|
|
12868
|
+
*/
|
|
12869
|
+
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
12870
|
+
/**
|
|
12871
|
+
* Add Connection
|
|
12872
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12873
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
12874
|
+
* @param {*} [options] Override http request option.
|
|
12875
|
+
* @throws {RequiredError}
|
|
12876
|
+
*/
|
|
12877
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12878
|
+
/**
|
|
12879
|
+
* Add Price Group
|
|
12880
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
12881
|
+
* @param {*} [options] Override http request option.
|
|
12882
|
+
* @throws {RequiredError}
|
|
12883
|
+
*/
|
|
12884
|
+
postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PriceGroup>>;
|
|
12885
|
+
/**
|
|
12886
|
+
* Add Service Plan
|
|
12887
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
12888
|
+
* @param {*} [options] Override http request option.
|
|
12889
|
+
* @throws {RequiredError}
|
|
12890
|
+
*/
|
|
12891
|
+
postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServicePlan>>;
|
|
12892
|
+
/**
|
|
12893
|
+
* Add SIP Trunk billing
|
|
12894
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
12895
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12896
|
+
* @param {*} [options] Override http request option.
|
|
12897
|
+
* @throws {RequiredError}
|
|
12898
|
+
*/
|
|
12899
|
+
postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12900
|
+
/**
|
|
12901
|
+
* Send Invoices
|
|
12902
|
+
* @param {*} [options] Override http request option.
|
|
12903
|
+
* @throws {RequiredError}
|
|
12904
|
+
*/
|
|
12905
|
+
postSendInvoices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
12906
|
+
/**
|
|
12907
|
+
* Update Connection
|
|
12908
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
12909
|
+
* @param {number} [connectionId] Connection ID
|
|
12910
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12911
|
+
* @param {*} [options] Override http request option.
|
|
12912
|
+
* @throws {RequiredError}
|
|
12913
|
+
*/
|
|
12914
|
+
postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
12915
|
+
/**
|
|
12916
|
+
* Update Recurring Charge
|
|
12917
|
+
* @param {number} id Recurring Charge ID
|
|
12918
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
12919
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12920
|
+
* @param {*} [options] Override http request option.
|
|
12921
|
+
* @throws {RequiredError}
|
|
12922
|
+
*/
|
|
12923
|
+
postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecurringCharge>>;
|
|
12924
|
+
/**
|
|
12925
|
+
* Update Call Tariff
|
|
12926
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
12927
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
12928
|
+
* @param {*} [options] Override http request option.
|
|
12929
|
+
* @throws {RequiredError}
|
|
12930
|
+
*/
|
|
12931
|
+
putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
12932
|
+
/**
|
|
12933
|
+
* Update Service
|
|
12934
|
+
* @param {number} id Service ID
|
|
12935
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
12936
|
+
* @param {*} [options] Override http request option.
|
|
12937
|
+
* @throws {RequiredError}
|
|
12938
|
+
*/
|
|
12939
|
+
putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Service>>;
|
|
12940
|
+
/**
|
|
12941
|
+
* Transfer Billing Connection
|
|
12942
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
12943
|
+
* @param {number} [id] Connection ID
|
|
12944
|
+
* @param {string} [cli] CLI
|
|
12945
|
+
* @param {boolean} [skipDDis] Skip DDIs
|
|
12946
|
+
* @param {*} [options] Override http request option.
|
|
12947
|
+
* @throws {RequiredError}
|
|
12948
|
+
*/
|
|
12949
|
+
putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
12950
|
+
/**
|
|
12951
|
+
* Convert Child To Parent
|
|
12952
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12953
|
+
* @param {*} [options] Override http request option.
|
|
12954
|
+
* @throws {RequiredError}
|
|
12955
|
+
*/
|
|
12956
|
+
putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
12957
|
+
/**
|
|
12958
|
+
* Disable Bundles
|
|
12959
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12960
|
+
* @param {*} [options] Override http request option.
|
|
12961
|
+
* @throws {RequiredError}
|
|
12962
|
+
*/
|
|
12963
|
+
putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12964
|
+
/**
|
|
12965
|
+
* Disable DDI Billing
|
|
12966
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12967
|
+
* @param {*} [options] Override http request option.
|
|
12968
|
+
* @throws {RequiredError}
|
|
12969
|
+
*/
|
|
12970
|
+
putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12971
|
+
/**
|
|
12972
|
+
* Enable Bundles
|
|
12973
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12974
|
+
* @param {*} [options] Override http request option.
|
|
12975
|
+
* @throws {RequiredError}
|
|
12976
|
+
*/
|
|
12977
|
+
putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12978
|
+
/**
|
|
12979
|
+
* Enable DDI Billing
|
|
12980
|
+
* @param {number} [billCustomerId] Customer ID
|
|
12981
|
+
* @param {*} [options] Override http request option.
|
|
12982
|
+
* @throws {RequiredError}
|
|
12983
|
+
*/
|
|
12984
|
+
putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
12985
|
+
/**
|
|
12986
|
+
* Update Base Service
|
|
12987
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
12988
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
12989
|
+
* @param {*} [options] Override http request option.
|
|
12990
|
+
* @throws {RequiredError}
|
|
12991
|
+
*/
|
|
12992
|
+
putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BaseService>>;
|
|
12993
|
+
/**
|
|
12994
|
+
* Update Call Tariff
|
|
12995
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
12996
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
12997
|
+
* @param {*} [options] Override http request option.
|
|
12998
|
+
* @throws {RequiredError}
|
|
12999
|
+
*/
|
|
13000
|
+
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
13001
|
+
/**
|
|
13002
|
+
* Update Connection
|
|
13003
|
+
* @param {number} connectionId Connection ID
|
|
13004
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13005
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
13006
|
+
* @param {*} [options] Override http request option.
|
|
13007
|
+
* @throws {RequiredError}
|
|
13008
|
+
*/
|
|
13009
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
13010
|
+
/**
|
|
13011
|
+
* Update Price Group
|
|
13012
|
+
* @param {number} priceGroupId Price Group ID
|
|
13013
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
13014
|
+
* @param {*} [options] Override http request option.
|
|
13015
|
+
* @throws {RequiredError}
|
|
13016
|
+
*/
|
|
13017
|
+
putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PriceGroup>>;
|
|
13018
|
+
};
|
|
13019
|
+
/**
|
|
13020
|
+
* BillingApi - factory interface
|
|
13021
|
+
*/
|
|
13022
|
+
export declare const BillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13023
|
+
/**
|
|
13024
|
+
* Delete Call Tariff
|
|
13025
|
+
* @param {string} priceGroupName Price Group Name
|
|
13026
|
+
* @param {*} [options] Override http request option.
|
|
13027
|
+
* @throws {RequiredError}
|
|
13028
|
+
*/
|
|
13029
|
+
deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13030
|
+
/**
|
|
13031
|
+
* Delete Recurring Charges
|
|
13032
|
+
* @param {number} id Recurring Charge ID
|
|
13033
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13034
|
+
* @param {*} [options] Override http request option.
|
|
13035
|
+
* @throws {RequiredError}
|
|
13036
|
+
*/
|
|
13037
|
+
deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
13038
|
+
/**
|
|
13039
|
+
* Delete Service
|
|
13040
|
+
* @param {string} planGroup Plan Group
|
|
13041
|
+
* @param {string} serviceCode Service Code
|
|
13042
|
+
* @param {*} [options] Override http request option.
|
|
13043
|
+
* @throws {RequiredError}
|
|
13044
|
+
*/
|
|
13045
|
+
deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13046
|
+
/**
|
|
13047
|
+
* Delete Customer
|
|
13048
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13049
|
+
* @param {*} [options] Override http request option.
|
|
13050
|
+
* @throws {RequiredError}
|
|
13051
|
+
*/
|
|
13052
|
+
deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
13053
|
+
/**
|
|
13054
|
+
* Delete Base Service
|
|
13055
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
13056
|
+
* @param {*} [options] Override http request option.
|
|
13057
|
+
* @throws {RequiredError}
|
|
13058
|
+
*/
|
|
13059
|
+
deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13060
|
+
/**
|
|
13061
|
+
* Delete Call Tariff Plan
|
|
13062
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
13063
|
+
* @param {*} [options] Override http request option.
|
|
13064
|
+
* @throws {RequiredError}
|
|
13065
|
+
*/
|
|
13066
|
+
deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13067
|
+
/**
|
|
13068
|
+
* Delete Price Group
|
|
13069
|
+
* @param {number} priceGroupId Price Group ID
|
|
13070
|
+
* @param {*} [options] Override http request option.
|
|
13071
|
+
* @throws {RequiredError}
|
|
13072
|
+
*/
|
|
13073
|
+
deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13074
|
+
/**
|
|
13075
|
+
* Delete Service Plan
|
|
13076
|
+
* @param {number} servicePlanId Service Plan ID
|
|
13077
|
+
* @param {*} [options] Override http request option.
|
|
13078
|
+
* @throws {RequiredError}
|
|
13079
|
+
*/
|
|
13080
|
+
deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
13081
|
+
/**
|
|
13082
|
+
* Get Recurring Charges
|
|
13083
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13084
|
+
* @param {*} [options] Override http request option.
|
|
13085
|
+
* @throws {RequiredError}
|
|
13086
|
+
*/
|
|
13087
|
+
getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<RecurringCharge>>;
|
|
13088
|
+
/**
|
|
13089
|
+
* Get Service
|
|
13090
|
+
* @param {number} id Service ID
|
|
13091
|
+
* @param {*} [options] Override http request option.
|
|
13092
|
+
* @throws {RequiredError}
|
|
13093
|
+
*/
|
|
13094
|
+
getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
13095
|
+
/**
|
|
13096
|
+
* Get SIP Trunk DDIs
|
|
13097
|
+
* @param {number} [connectionId] Connection ID
|
|
13098
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13099
|
+
* @param {*} [options] Override http request option.
|
|
13100
|
+
* @throws {RequiredError}
|
|
13101
|
+
*/
|
|
13102
|
+
getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
13103
|
+
/**
|
|
13104
|
+
* Connection Search
|
|
13105
|
+
* @param {string} search Search
|
|
13106
|
+
* @param {*} [options] Override http request option.
|
|
13107
|
+
* @throws {RequiredError}
|
|
13108
|
+
*/
|
|
13109
|
+
getConnectionSearch(search: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
13110
|
+
/**
|
|
13111
|
+
* Get Billing Customers
|
|
13112
|
+
* @summary Get Billing Customers
|
|
13113
|
+
* @param {*} [options] Override http request option.
|
|
13114
|
+
* @throws {RequiredError}
|
|
13115
|
+
*/
|
|
13116
|
+
getGetAllCustomer(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
13117
|
+
[key: string]: {
|
|
13118
|
+
[key: string]: string;
|
|
13119
|
+
};
|
|
13120
|
+
}>;
|
|
13121
|
+
/**
|
|
13122
|
+
* Get All MT SIP Trunks
|
|
13123
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13124
|
+
* @param {*} [options] Override http request option.
|
|
13125
|
+
* @throws {RequiredError}
|
|
13126
|
+
*/
|
|
13127
|
+
getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
|
|
13128
|
+
/**
|
|
13129
|
+
* Get All SIP Trunks
|
|
13130
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13131
|
+
* @param {*} [options] Override http request option.
|
|
13132
|
+
* @throws {RequiredError}
|
|
13133
|
+
*/
|
|
13134
|
+
getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
|
|
13135
|
+
/**
|
|
13136
|
+
* Get Base Services
|
|
13137
|
+
* @param {*} [options] Override http request option.
|
|
13138
|
+
* @throws {RequiredError}
|
|
13139
|
+
*/
|
|
13140
|
+
getGetBaseServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseService>>;
|
|
13141
|
+
/**
|
|
13142
|
+
* Get Customer
|
|
13143
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13144
|
+
* @param {*} [options] Override http request option.
|
|
13145
|
+
* @throws {RequiredError}
|
|
13146
|
+
*/
|
|
13147
|
+
getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
13148
|
+
/**
|
|
13149
|
+
* Get Bundle Calls With Cost
|
|
13150
|
+
* @param {*} [options] Override http request option.
|
|
13151
|
+
* @throws {RequiredError}
|
|
13152
|
+
*/
|
|
13153
|
+
getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
|
|
13154
|
+
/**
|
|
13155
|
+
* Get Call Tariff
|
|
13156
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
13157
|
+
* @param {*} [options] Override http request option.
|
|
13158
|
+
* @throws {RequiredError}
|
|
13159
|
+
*/
|
|
13160
|
+
getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
13161
|
+
/**
|
|
13162
|
+
* Get Call Tariffs
|
|
13163
|
+
* @param {*} [options] Override http request option.
|
|
13164
|
+
* @throws {RequiredError}
|
|
13165
|
+
*/
|
|
13166
|
+
getGetCallTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
|
|
13167
|
+
/**
|
|
13168
|
+
* Get Call Tariffs Detailed
|
|
13169
|
+
* @param {*} [options] Override http request option.
|
|
13170
|
+
* @throws {RequiredError}
|
|
13171
|
+
*/
|
|
13172
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
|
|
13173
|
+
/**
|
|
13174
|
+
* Get Children
|
|
13175
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13176
|
+
* @param {*} [options] Override http request option.
|
|
13177
|
+
* @throws {RequiredError}
|
|
13178
|
+
*/
|
|
13179
|
+
getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
13180
|
+
/**
|
|
13181
|
+
* Get Connection
|
|
13182
|
+
* @param {number} id Connection ID
|
|
13183
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13184
|
+
* @param {*} [options] Override http request option.
|
|
13185
|
+
* @throws {RequiredError}
|
|
13186
|
+
*/
|
|
13187
|
+
getGetConnection(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
13188
|
+
/**
|
|
13189
|
+
* Get Connections
|
|
13190
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
13191
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13192
|
+
* @param {*} [options] Override http request option.
|
|
13193
|
+
* @throws {RequiredError}
|
|
13194
|
+
*/
|
|
13195
|
+
getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
13196
|
+
/**
|
|
13197
|
+
* Get Customer (Global)
|
|
13198
|
+
* @param {string} [accountId] Account ID
|
|
13199
|
+
* @param {number} [customerId] Customer ID
|
|
13200
|
+
* @param {string} [customerCode] Customer Code
|
|
13201
|
+
* @param {*} [options] Override http request option.
|
|
13202
|
+
* @throws {RequiredError}
|
|
13203
|
+
*/
|
|
13204
|
+
getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
13205
|
+
/**
|
|
13206
|
+
* Get Inbound Tariffs
|
|
13207
|
+
* @param {*} [options] Override http request option.
|
|
13208
|
+
* @throws {RequiredError}
|
|
13209
|
+
*/
|
|
13210
|
+
getGetInboundTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
13211
|
+
/**
|
|
13212
|
+
* Get Inbound Tariffs Detailed
|
|
13213
|
+
* @param {*} [options] Override http request option.
|
|
13214
|
+
* @throws {RequiredError}
|
|
13215
|
+
*/
|
|
13216
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<InboundTariffPlanResponse>>;
|
|
13217
|
+
/**
|
|
13218
|
+
* Get Price Groups
|
|
13219
|
+
* @param {*} [options] Override http request option.
|
|
13220
|
+
* @throws {RequiredError}
|
|
13221
|
+
*/
|
|
13222
|
+
getGetPriceGroups(options?: RawAxiosRequestConfig): AxiosPromise<Array<PriceGroup>>;
|
|
13223
|
+
/**
|
|
13224
|
+
* Get Service Plan
|
|
13225
|
+
* @param {number} servicePlanId Service Plan ID
|
|
13226
|
+
* @param {*} [options] Override http request option.
|
|
13227
|
+
* @throws {RequiredError}
|
|
13228
|
+
*/
|
|
13229
|
+
getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): AxiosPromise<ServicePlan>;
|
|
13230
|
+
/**
|
|
13231
|
+
* Get Service Plans
|
|
13232
|
+
* @param {*} [options] Override http request option.
|
|
13233
|
+
* @throws {RequiredError}
|
|
13234
|
+
*/
|
|
13235
|
+
getGetServicePlans(options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
|
|
13236
|
+
/**
|
|
13237
|
+
* Get Service Plans Detailed
|
|
13238
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
13239
|
+
* @param {*} [options] Override http request option.
|
|
13240
|
+
* @throws {RequiredError}
|
|
13241
|
+
*/
|
|
13242
|
+
getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
|
|
13243
|
+
/**
|
|
13244
|
+
* Get SIP Trunk List
|
|
13245
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13246
|
+
* @param {*} [options] Override http request option.
|
|
13247
|
+
* @throws {RequiredError}
|
|
13248
|
+
*/
|
|
13249
|
+
getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<Array<string>>>;
|
|
13250
|
+
/**
|
|
13251
|
+
* Get SIP Trunk Billing
|
|
13252
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13253
|
+
* @param {*} [options] Override http request option.
|
|
13254
|
+
* @throws {RequiredError}
|
|
13255
|
+
*/
|
|
13256
|
+
getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
13257
|
+
/**
|
|
13258
|
+
* Get Unconnected Calls
|
|
13259
|
+
* @param {*} [options] Override http request option.
|
|
13260
|
+
* @throws {RequiredError}
|
|
13261
|
+
*/
|
|
13262
|
+
getGetUnconnectedCalls(options?: RawAxiosRequestConfig): AxiosPromise<Array<ProcessedCdr>>;
|
|
13263
|
+
/**
|
|
13264
|
+
* Get Unconnected Services
|
|
13265
|
+
* @param {*} [options] Override http request option.
|
|
13266
|
+
* @throws {RequiredError}
|
|
13267
|
+
*/
|
|
13268
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<UnconnectedSdr>>;
|
|
13269
|
+
/**
|
|
13270
|
+
* Is Bundle Customer
|
|
13271
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13272
|
+
* @param {*} [options] Override http request option.
|
|
13273
|
+
* @throws {RequiredError}
|
|
13274
|
+
*/
|
|
13275
|
+
getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13276
|
+
/**
|
|
13277
|
+
* Add Broadband
|
|
13278
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
13279
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13280
|
+
* @param {*} [options] Override http request option.
|
|
13281
|
+
* @throws {RequiredError}
|
|
13282
|
+
*/
|
|
13283
|
+
postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
13284
|
+
/**
|
|
13285
|
+
* Add Call Tariff To Call Tariff Plan
|
|
13286
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
13287
|
+
* @param {*} [options] Override http request option.
|
|
13288
|
+
* @throws {RequiredError}
|
|
13289
|
+
*/
|
|
13290
|
+
postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
13291
|
+
/**
|
|
13292
|
+
* Add Child Customer
|
|
13293
|
+
* @param {ContactDetail} contactDetail
|
|
13294
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13295
|
+
* @param {number} [customerId] Child Customer ID
|
|
13296
|
+
* @param {*} [options] Override http request option.
|
|
13297
|
+
* @throws {RequiredError}
|
|
13298
|
+
*/
|
|
13299
|
+
postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
13300
|
+
/**
|
|
13301
|
+
* Add Ethernet
|
|
13302
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
13303
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13304
|
+
* @param {*} [options] Override http request option.
|
|
13305
|
+
* @throws {RequiredError}
|
|
13306
|
+
*/
|
|
13307
|
+
postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
13308
|
+
/**
|
|
13309
|
+
* Add Recurring Charge
|
|
13310
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
13311
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13312
|
+
* @param {*} [options] Override http request option.
|
|
13313
|
+
* @throws {RequiredError}
|
|
13314
|
+
*/
|
|
13315
|
+
postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<RecurringCharge>;
|
|
13316
|
+
/**
|
|
13317
|
+
* Add Service To Service Plan
|
|
13318
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
13319
|
+
* @param {*} [options] Override http request option.
|
|
13320
|
+
* @throws {RequiredError}
|
|
13321
|
+
*/
|
|
13322
|
+
postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
13323
|
+
/**
|
|
13324
|
+
* Add SIP Trunk DDIs
|
|
13325
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
13326
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13327
|
+
* @param {*} [options] Override http request option.
|
|
13328
|
+
* @throws {RequiredError}
|
|
13329
|
+
*/
|
|
13330
|
+
postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<OutboundCli>>;
|
|
13331
|
+
/**
|
|
13332
|
+
* Disconnect Connection
|
|
13333
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
13334
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13335
|
+
* @param {*} [options] Override http request option.
|
|
13336
|
+
* @throws {RequiredError}
|
|
13337
|
+
*/
|
|
13338
|
+
postDisconnectConnection(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
13339
|
+
/**
|
|
13340
|
+
* Disconnect DDI
|
|
13341
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
13342
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13343
|
+
* @param {*} [options] Override http request option.
|
|
13344
|
+
* @throws {RequiredError}
|
|
13345
|
+
*/
|
|
13346
|
+
postDisconnectDDI(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<number>;
|
|
13347
|
+
/**
|
|
13348
|
+
* Add Base Service
|
|
13349
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
13350
|
+
* @param {*} [options] Override http request option.
|
|
13351
|
+
* @throws {RequiredError}
|
|
13352
|
+
*/
|
|
13353
|
+
postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
13354
|
+
/**
|
|
13355
|
+
* Add Call Tariff
|
|
13356
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
13357
|
+
* @param {*} [options] Override http request option.
|
|
13358
|
+
* @throws {RequiredError}
|
|
13359
|
+
*/
|
|
13360
|
+
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
13361
|
+
/**
|
|
13362
|
+
* Add Connection
|
|
13363
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13364
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
13365
|
+
* @param {*} [options] Override http request option.
|
|
13366
|
+
* @throws {RequiredError}
|
|
13367
|
+
*/
|
|
13368
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
13369
|
+
/**
|
|
13370
|
+
* Add Price Group
|
|
13371
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
13372
|
+
* @param {*} [options] Override http request option.
|
|
13373
|
+
* @throws {RequiredError}
|
|
13374
|
+
*/
|
|
13375
|
+
postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PriceGroup>;
|
|
13376
|
+
/**
|
|
13377
|
+
* Add Service Plan
|
|
13378
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
13379
|
+
* @param {*} [options] Override http request option.
|
|
13380
|
+
* @throws {RequiredError}
|
|
13381
|
+
*/
|
|
13382
|
+
postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): AxiosPromise<ServicePlan>;
|
|
13383
|
+
/**
|
|
13384
|
+
* Add SIP Trunk billing
|
|
13385
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
13386
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13387
|
+
* @param {*} [options] Override http request option.
|
|
13388
|
+
* @throws {RequiredError}
|
|
13389
|
+
*/
|
|
13390
|
+
postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
13391
|
+
/**
|
|
13392
|
+
* Send Invoices
|
|
13393
|
+
* @param {*} [options] Override http request option.
|
|
13394
|
+
* @throws {RequiredError}
|
|
13395
|
+
*/
|
|
13396
|
+
postSendInvoices(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
13397
|
+
/**
|
|
13398
|
+
* Update Connection
|
|
13399
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
13400
|
+
* @param {number} [connectionId] Connection ID
|
|
13401
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13402
|
+
* @param {*} [options] Override http request option.
|
|
13403
|
+
* @throws {RequiredError}
|
|
13404
|
+
*/
|
|
13405
|
+
postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
13406
|
+
/**
|
|
13407
|
+
* Update Recurring Charge
|
|
13408
|
+
* @param {number} id Recurring Charge ID
|
|
13409
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
13410
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13411
|
+
* @param {*} [options] Override http request option.
|
|
13412
|
+
* @throws {RequiredError}
|
|
13413
|
+
*/
|
|
13414
|
+
postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<RecurringCharge>;
|
|
13415
|
+
/**
|
|
13416
|
+
* Update Call Tariff
|
|
13417
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
13418
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
13419
|
+
* @param {*} [options] Override http request option.
|
|
13420
|
+
* @throws {RequiredError}
|
|
13421
|
+
*/
|
|
13422
|
+
putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
13423
|
+
/**
|
|
13424
|
+
* Update Service
|
|
13425
|
+
* @param {number} id Service ID
|
|
13426
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
13427
|
+
* @param {*} [options] Override http request option.
|
|
13428
|
+
* @throws {RequiredError}
|
|
13429
|
+
*/
|
|
13430
|
+
putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<Service>;
|
|
13431
|
+
/**
|
|
13432
|
+
* Transfer Billing Connection
|
|
13433
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
13434
|
+
* @param {number} [id] Connection ID
|
|
11391
13435
|
* @param {string} [cli] CLI
|
|
11392
13436
|
* @param {boolean} [skipDDis] Skip DDIs
|
|
11393
13437
|
* @param {*} [options] Override http request option.
|
|
11394
13438
|
* @throws {RequiredError}
|
|
11395
13439
|
*/
|
|
11396
|
-
|
|
13440
|
+
putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
13441
|
+
/**
|
|
13442
|
+
* Convert Child To Parent
|
|
13443
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13444
|
+
* @param {*} [options] Override http request option.
|
|
13445
|
+
* @throws {RequiredError}
|
|
13446
|
+
*/
|
|
13447
|
+
putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
13448
|
+
/**
|
|
13449
|
+
* Disable Bundles
|
|
13450
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13451
|
+
* @param {*} [options] Override http request option.
|
|
13452
|
+
* @throws {RequiredError}
|
|
13453
|
+
*/
|
|
13454
|
+
putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13455
|
+
/**
|
|
13456
|
+
* Disable DDI Billing
|
|
13457
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13458
|
+
* @param {*} [options] Override http request option.
|
|
13459
|
+
* @throws {RequiredError}
|
|
13460
|
+
*/
|
|
13461
|
+
putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13462
|
+
/**
|
|
13463
|
+
* Enable Bundles
|
|
13464
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13465
|
+
* @param {*} [options] Override http request option.
|
|
13466
|
+
* @throws {RequiredError}
|
|
13467
|
+
*/
|
|
13468
|
+
putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13469
|
+
/**
|
|
13470
|
+
* Enable DDI Billing
|
|
13471
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13472
|
+
* @param {*} [options] Override http request option.
|
|
13473
|
+
* @throws {RequiredError}
|
|
13474
|
+
*/
|
|
13475
|
+
putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
13476
|
+
/**
|
|
13477
|
+
* Update Base Service
|
|
13478
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
13479
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
13480
|
+
* @param {*} [options] Override http request option.
|
|
13481
|
+
* @throws {RequiredError}
|
|
13482
|
+
*/
|
|
13483
|
+
putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): AxiosPromise<BaseService>;
|
|
13484
|
+
/**
|
|
13485
|
+
* Update Call Tariff
|
|
13486
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
13487
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
13488
|
+
* @param {*} [options] Override http request option.
|
|
13489
|
+
* @throws {RequiredError}
|
|
13490
|
+
*/
|
|
13491
|
+
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
13492
|
+
/**
|
|
13493
|
+
* Update Connection
|
|
13494
|
+
* @param {number} connectionId Connection ID
|
|
13495
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13496
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
13497
|
+
* @param {*} [options] Override http request option.
|
|
13498
|
+
* @throws {RequiredError}
|
|
13499
|
+
*/
|
|
13500
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
13501
|
+
/**
|
|
13502
|
+
* Update Price Group
|
|
13503
|
+
* @param {number} priceGroupId Price Group ID
|
|
13504
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
13505
|
+
* @param {*} [options] Override http request option.
|
|
13506
|
+
* @throws {RequiredError}
|
|
13507
|
+
*/
|
|
13508
|
+
putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): AxiosPromise<PriceGroup>;
|
|
11397
13509
|
};
|
|
11398
13510
|
/**
|
|
11399
13511
|
* BillingApi - object-oriented interface
|
|
11400
13512
|
*/
|
|
11401
13513
|
export declare class BillingApi extends BaseAPI {
|
|
13514
|
+
/**
|
|
13515
|
+
* Delete Call Tariff
|
|
13516
|
+
* @param {string} priceGroupName Price Group Name
|
|
13517
|
+
* @param {*} [options] Override http request option.
|
|
13518
|
+
* @throws {RequiredError}
|
|
13519
|
+
*/
|
|
13520
|
+
deleteAddCallTariffToCallTariffPlan(priceGroupName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13521
|
+
/**
|
|
13522
|
+
* Delete Recurring Charges
|
|
13523
|
+
* @param {number} id Recurring Charge ID
|
|
13524
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13525
|
+
* @param {*} [options] Override http request option.
|
|
13526
|
+
* @throws {RequiredError}
|
|
13527
|
+
*/
|
|
13528
|
+
deleteAddRecurringCharge(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
13529
|
+
/**
|
|
13530
|
+
* Delete Service
|
|
13531
|
+
* @param {string} planGroup Plan Group
|
|
13532
|
+
* @param {string} serviceCode Service Code
|
|
13533
|
+
* @param {*} [options] Override http request option.
|
|
13534
|
+
* @throws {RequiredError}
|
|
13535
|
+
*/
|
|
13536
|
+
deleteAddServiceToServicePlan(planGroup: string, serviceCode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13537
|
+
/**
|
|
13538
|
+
* Delete Customer
|
|
13539
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13540
|
+
* @param {*} [options] Override http request option.
|
|
13541
|
+
* @throws {RequiredError}
|
|
13542
|
+
*/
|
|
13543
|
+
deleteCloseAccount(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
13544
|
+
/**
|
|
13545
|
+
* Delete Base Service
|
|
13546
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
13547
|
+
* @param {*} [options] Override http request option.
|
|
13548
|
+
* @throws {RequiredError}
|
|
13549
|
+
*/
|
|
13550
|
+
deleteGetBaseServices(baseServiceId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13551
|
+
/**
|
|
13552
|
+
* Delete Call Tariff Plan
|
|
13553
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
13554
|
+
* @param {*} [options] Override http request option.
|
|
13555
|
+
* @throws {RequiredError}
|
|
13556
|
+
*/
|
|
13557
|
+
deleteGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13558
|
+
/**
|
|
13559
|
+
* Delete Price Group
|
|
13560
|
+
* @param {number} priceGroupId Price Group ID
|
|
13561
|
+
* @param {*} [options] Override http request option.
|
|
13562
|
+
* @throws {RequiredError}
|
|
13563
|
+
*/
|
|
13564
|
+
deleteGetPriceGroups(priceGroupId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13565
|
+
/**
|
|
13566
|
+
* Delete Service Plan
|
|
13567
|
+
* @param {number} servicePlanId Service Plan ID
|
|
13568
|
+
* @param {*} [options] Override http request option.
|
|
13569
|
+
* @throws {RequiredError}
|
|
13570
|
+
*/
|
|
13571
|
+
deleteGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
13572
|
+
/**
|
|
13573
|
+
* Get Recurring Charges
|
|
13574
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13575
|
+
* @param {*} [options] Override http request option.
|
|
13576
|
+
* @throws {RequiredError}
|
|
13577
|
+
*/
|
|
13578
|
+
getAddRecurringCharge(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge[], any, {}>>;
|
|
13579
|
+
/**
|
|
13580
|
+
* Get Service
|
|
13581
|
+
* @param {number} id Service ID
|
|
13582
|
+
* @param {*} [options] Override http request option.
|
|
13583
|
+
* @throws {RequiredError}
|
|
13584
|
+
*/
|
|
13585
|
+
getAddServiceToServicePlan(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
13586
|
+
/**
|
|
13587
|
+
* Get SIP Trunk DDIs
|
|
13588
|
+
* @param {number} [connectionId] Connection ID
|
|
13589
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13590
|
+
* @param {*} [options] Override http request option.
|
|
13591
|
+
* @throws {RequiredError}
|
|
13592
|
+
*/
|
|
13593
|
+
getAddSipTrunkDDIs(connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
13594
|
+
/**
|
|
13595
|
+
* Connection Search
|
|
13596
|
+
* @param {string} search Search
|
|
13597
|
+
* @param {*} [options] Override http request option.
|
|
13598
|
+
* @throws {RequiredError}
|
|
13599
|
+
*/
|
|
13600
|
+
getConnectionSearch(search: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
11402
13601
|
/**
|
|
11403
13602
|
* Get Billing Customers
|
|
11404
13603
|
* @summary Get Billing Customers
|
|
@@ -11410,17 +13609,425 @@ export declare class BillingApi extends BaseAPI {
|
|
|
11410
13609
|
[key: string]: string;
|
|
11411
13610
|
};
|
|
11412
13611
|
}, any, {}>>;
|
|
13612
|
+
/**
|
|
13613
|
+
* Get All MT SIP Trunks
|
|
13614
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13615
|
+
* @param {*} [options] Override http request option.
|
|
13616
|
+
* @throws {RequiredError}
|
|
13617
|
+
*/
|
|
13618
|
+
getGetAllMtSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
|
|
13619
|
+
/**
|
|
13620
|
+
* Get All SIP Trunks
|
|
13621
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13622
|
+
* @param {*} [options] Override http request option.
|
|
13623
|
+
* @throws {RequiredError}
|
|
13624
|
+
*/
|
|
13625
|
+
getGetAllSipTrunks(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
|
|
13626
|
+
/**
|
|
13627
|
+
* Get Base Services
|
|
13628
|
+
* @param {*} [options] Override http request option.
|
|
13629
|
+
* @throws {RequiredError}
|
|
13630
|
+
*/
|
|
13631
|
+
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService[], any, {}>>;
|
|
13632
|
+
/**
|
|
13633
|
+
* Get Customer
|
|
13634
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13635
|
+
* @param {*} [options] Override http request option.
|
|
13636
|
+
* @throws {RequiredError}
|
|
13637
|
+
*/
|
|
13638
|
+
getGetBillingCustomerDetails(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
13639
|
+
/**
|
|
13640
|
+
* Get Bundle Calls With Cost
|
|
13641
|
+
* @param {*} [options] Override http request option.
|
|
13642
|
+
* @throws {RequiredError}
|
|
13643
|
+
*/
|
|
13644
|
+
getGetBundleCallsWithCost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
|
|
13645
|
+
/**
|
|
13646
|
+
* Get Call Tariff
|
|
13647
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
13648
|
+
* @param {*} [options] Override http request option.
|
|
13649
|
+
* @throws {RequiredError}
|
|
13650
|
+
*/
|
|
13651
|
+
getGetCallTariffPlan(callTariffPlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
13652
|
+
/**
|
|
13653
|
+
* Get Call Tariffs
|
|
13654
|
+
* @param {*} [options] Override http request option.
|
|
13655
|
+
* @throws {RequiredError}
|
|
13656
|
+
*/
|
|
13657
|
+
getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
|
|
13658
|
+
/**
|
|
13659
|
+
* Get Call Tariffs Detailed
|
|
13660
|
+
* @param {*} [options] Override http request option.
|
|
13661
|
+
* @throws {RequiredError}
|
|
13662
|
+
*/
|
|
13663
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
|
|
13664
|
+
/**
|
|
13665
|
+
* Get Children
|
|
13666
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13667
|
+
* @param {*} [options] Override http request option.
|
|
13668
|
+
* @throws {RequiredError}
|
|
13669
|
+
*/
|
|
13670
|
+
getGetChildren(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any, {}>>;
|
|
13671
|
+
/**
|
|
13672
|
+
* Get Connection
|
|
13673
|
+
* @param {number} id Connection ID
|
|
13674
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13675
|
+
* @param {*} [options] Override http request option.
|
|
13676
|
+
* @throws {RequiredError}
|
|
13677
|
+
*/
|
|
13678
|
+
getGetConnection(id: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13679
|
+
/**
|
|
13680
|
+
* Get Connections
|
|
13681
|
+
* @param {GetGetConnectionsTypeEnum} [type] Connection Type
|
|
13682
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13683
|
+
* @param {*} [options] Override http request option.
|
|
13684
|
+
* @throws {RequiredError}
|
|
13685
|
+
*/
|
|
13686
|
+
getGetConnections(type?: GetGetConnectionsTypeEnum, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
13687
|
+
/**
|
|
13688
|
+
* Get Customer (Global)
|
|
13689
|
+
* @param {string} [accountId] Account ID
|
|
13690
|
+
* @param {number} [customerId] Customer ID
|
|
13691
|
+
* @param {string} [customerCode] Customer Code
|
|
13692
|
+
* @param {*} [options] Override http request option.
|
|
13693
|
+
* @throws {RequiredError}
|
|
13694
|
+
*/
|
|
13695
|
+
getGetCustomer(accountId?: string, customerId?: number, customerCode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
13696
|
+
/**
|
|
13697
|
+
* Get Inbound Tariffs
|
|
13698
|
+
* @param {*} [options] Override http request option.
|
|
13699
|
+
* @throws {RequiredError}
|
|
13700
|
+
*/
|
|
13701
|
+
getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
|
|
13702
|
+
/**
|
|
13703
|
+
* Get Inbound Tariffs Detailed
|
|
13704
|
+
* @param {*} [options] Override http request option.
|
|
13705
|
+
* @throws {RequiredError}
|
|
13706
|
+
*/
|
|
13707
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundTariffPlanResponse[], any, {}>>;
|
|
13708
|
+
/**
|
|
13709
|
+
* Get Price Groups
|
|
13710
|
+
* @param {*} [options] Override http request option.
|
|
13711
|
+
* @throws {RequiredError}
|
|
13712
|
+
*/
|
|
13713
|
+
getGetPriceGroups(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup[], any, {}>>;
|
|
13714
|
+
/**
|
|
13715
|
+
* Get Service Plan
|
|
13716
|
+
* @param {number} servicePlanId Service Plan ID
|
|
13717
|
+
* @param {*} [options] Override http request option.
|
|
13718
|
+
* @throws {RequiredError}
|
|
13719
|
+
*/
|
|
13720
|
+
getGetServicePlan(servicePlanId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan, any, {}>>;
|
|
13721
|
+
/**
|
|
13722
|
+
* Get Service Plans
|
|
13723
|
+
* @param {*} [options] Override http request option.
|
|
13724
|
+
* @throws {RequiredError}
|
|
13725
|
+
*/
|
|
13726
|
+
getGetServicePlans(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
|
|
13727
|
+
/**
|
|
13728
|
+
* Get Service Plans Detailed
|
|
13729
|
+
* @param {GetGetServicesPlanDetailsTypeEnum} [type] Connection Type
|
|
13730
|
+
* @param {*} [options] Override http request option.
|
|
13731
|
+
* @throws {RequiredError}
|
|
13732
|
+
*/
|
|
13733
|
+
getGetServicesPlanDetails(type?: GetGetServicesPlanDetailsTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
|
|
13734
|
+
/**
|
|
13735
|
+
* Get SIP Trunk List
|
|
13736
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13737
|
+
* @param {*} [options] Override http request option.
|
|
13738
|
+
* @throws {RequiredError}
|
|
13739
|
+
*/
|
|
13740
|
+
getGetSipTrunkList(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[][], any, {}>>;
|
|
13741
|
+
/**
|
|
13742
|
+
* Get SIP Trunk Billing
|
|
13743
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13744
|
+
* @param {*} [options] Override http request option.
|
|
13745
|
+
* @throws {RequiredError}
|
|
13746
|
+
*/
|
|
13747
|
+
getGetSipTrunksBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
|
|
13748
|
+
/**
|
|
13749
|
+
* Get Unconnected Calls
|
|
13750
|
+
* @param {*} [options] Override http request option.
|
|
13751
|
+
* @throws {RequiredError}
|
|
13752
|
+
*/
|
|
13753
|
+
getGetUnconnectedCalls(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessedCdr[], any, {}>>;
|
|
13754
|
+
/**
|
|
13755
|
+
* Get Unconnected Services
|
|
13756
|
+
* @param {*} [options] Override http request option.
|
|
13757
|
+
* @throws {RequiredError}
|
|
13758
|
+
*/
|
|
13759
|
+
getGetUnconnectedServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UnconnectedSdr[], any, {}>>;
|
|
13760
|
+
/**
|
|
13761
|
+
* Is Bundle Customer
|
|
13762
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13763
|
+
* @param {*} [options] Override http request option.
|
|
13764
|
+
* @throws {RequiredError}
|
|
13765
|
+
*/
|
|
13766
|
+
getIsBundleCustomer(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13767
|
+
/**
|
|
13768
|
+
* Add Broadband
|
|
13769
|
+
* @param {PostAddBroadbandRequest} postAddBroadbandRequest
|
|
13770
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13771
|
+
* @param {*} [options] Override http request option.
|
|
13772
|
+
* @throws {RequiredError}
|
|
13773
|
+
*/
|
|
13774
|
+
postAddBroadband(postAddBroadbandRequest: PostAddBroadbandRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13775
|
+
/**
|
|
13776
|
+
* Add Call Tariff To Call Tariff Plan
|
|
13777
|
+
* @param {PostAddCallTariffToCallTariffPlanRequest} postAddCallTariffToCallTariffPlanRequest
|
|
13778
|
+
* @param {*} [options] Override http request option.
|
|
13779
|
+
* @throws {RequiredError}
|
|
13780
|
+
*/
|
|
13781
|
+
postAddCallTariffToCallTariffPlan(postAddCallTariffToCallTariffPlanRequest: PostAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
13782
|
+
/**
|
|
13783
|
+
* Add Child Customer
|
|
13784
|
+
* @param {ContactDetail} contactDetail
|
|
13785
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13786
|
+
* @param {number} [customerId] Child Customer ID
|
|
13787
|
+
* @param {*} [options] Override http request option.
|
|
13788
|
+
* @throws {RequiredError}
|
|
13789
|
+
*/
|
|
13790
|
+
postAddChildCustomer(contactDetail: ContactDetail, billCustomerId?: number, customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
13791
|
+
/**
|
|
13792
|
+
* Add Ethernet
|
|
13793
|
+
* @param {PostAddEthernetRequest} postAddEthernetRequest
|
|
13794
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13795
|
+
* @param {*} [options] Override http request option.
|
|
13796
|
+
* @throws {RequiredError}
|
|
13797
|
+
*/
|
|
13798
|
+
postAddEthernet(postAddEthernetRequest: PostAddEthernetRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13799
|
+
/**
|
|
13800
|
+
* Add Recurring Charge
|
|
13801
|
+
* @param {PostAddRecurringChargeRequest} postAddRecurringChargeRequest
|
|
13802
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13803
|
+
* @param {*} [options] Override http request option.
|
|
13804
|
+
* @throws {RequiredError}
|
|
13805
|
+
*/
|
|
13806
|
+
postAddRecurringCharge(postAddRecurringChargeRequest: PostAddRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge, any, {}>>;
|
|
13807
|
+
/**
|
|
13808
|
+
* Add Service To Service Plan
|
|
13809
|
+
* @param {PostAddServiceToServicePlanRequest} postAddServiceToServicePlanRequest
|
|
13810
|
+
* @param {*} [options] Override http request option.
|
|
13811
|
+
* @throws {RequiredError}
|
|
13812
|
+
*/
|
|
13813
|
+
postAddServiceToServicePlan(postAddServiceToServicePlanRequest: PostAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
13814
|
+
/**
|
|
13815
|
+
* Add SIP Trunk DDIs
|
|
13816
|
+
* @param {PostAddSipTrunkDDIsRequest} postAddSipTrunkDDIsRequest
|
|
13817
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13818
|
+
* @param {*} [options] Override http request option.
|
|
13819
|
+
* @throws {RequiredError}
|
|
13820
|
+
*/
|
|
13821
|
+
postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest: PostAddSipTrunkDDIsRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli[], any, {}>>;
|
|
13822
|
+
/**
|
|
13823
|
+
* Disconnect Connection
|
|
13824
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
13825
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13826
|
+
* @param {*} [options] Override http request option.
|
|
13827
|
+
* @throws {RequiredError}
|
|
13828
|
+
*/
|
|
13829
|
+
postDisconnectConnection(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
13830
|
+
/**
|
|
13831
|
+
* Disconnect DDI
|
|
13832
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
13833
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13834
|
+
* @param {*} [options] Override http request option.
|
|
13835
|
+
* @throws {RequiredError}
|
|
13836
|
+
*/
|
|
13837
|
+
postDisconnectDDI(postDisconnectDDIRequest: PostDisconnectDDIRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any, {}>>;
|
|
13838
|
+
/**
|
|
13839
|
+
* Add Base Service
|
|
13840
|
+
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
13841
|
+
* @param {*} [options] Override http request option.
|
|
13842
|
+
* @throws {RequiredError}
|
|
13843
|
+
*/
|
|
13844
|
+
postGetBaseServices(postGetBaseServicesRequest: PostGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
13845
|
+
/**
|
|
13846
|
+
* Add Call Tariff
|
|
13847
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
13848
|
+
* @param {*} [options] Override http request option.
|
|
13849
|
+
* @throws {RequiredError}
|
|
13850
|
+
*/
|
|
13851
|
+
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
13852
|
+
/**
|
|
13853
|
+
* Add Connection
|
|
13854
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13855
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
13856
|
+
* @param {*} [options] Override http request option.
|
|
13857
|
+
* @throws {RequiredError}
|
|
13858
|
+
*/
|
|
13859
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13860
|
+
/**
|
|
13861
|
+
* Add Price Group
|
|
13862
|
+
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
13863
|
+
* @param {*} [options] Override http request option.
|
|
13864
|
+
* @throws {RequiredError}
|
|
13865
|
+
*/
|
|
13866
|
+
postGetPriceGroups(postGetPriceGroupsRequest: PostGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup, any, {}>>;
|
|
13867
|
+
/**
|
|
13868
|
+
* Add Service Plan
|
|
13869
|
+
* @param {PostGetServicePlansRequest} postGetServicePlansRequest
|
|
13870
|
+
* @param {*} [options] Override http request option.
|
|
13871
|
+
* @throws {RequiredError}
|
|
13872
|
+
*/
|
|
13873
|
+
postGetServicePlans(postGetServicePlansRequest: PostGetServicePlansRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan, any, {}>>;
|
|
13874
|
+
/**
|
|
13875
|
+
* Add SIP Trunk billing
|
|
13876
|
+
* @param {PostGetSipTrunksBillingRequest} postGetSipTrunksBillingRequest
|
|
13877
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13878
|
+
* @param {*} [options] Override http request option.
|
|
13879
|
+
* @throws {RequiredError}
|
|
13880
|
+
*/
|
|
13881
|
+
postGetSipTrunksBilling(postGetSipTrunksBillingRequest: PostGetSipTrunksBillingRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13882
|
+
/**
|
|
13883
|
+
* Send Invoices
|
|
13884
|
+
* @param {*} [options] Override http request option.
|
|
13885
|
+
* @throws {RequiredError}
|
|
13886
|
+
*/
|
|
13887
|
+
postSendInvoices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
13888
|
+
/**
|
|
13889
|
+
* Update Connection
|
|
13890
|
+
* @param {PostUpdateConnectionRequest} postUpdateConnectionRequest
|
|
13891
|
+
* @param {number} [connectionId] Connection ID
|
|
13892
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13893
|
+
* @param {*} [options] Override http request option.
|
|
13894
|
+
* @throws {RequiredError}
|
|
13895
|
+
*/
|
|
13896
|
+
postUpdateConnection(postUpdateConnectionRequest: PostUpdateConnectionRequest, connectionId?: number, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
13897
|
+
/**
|
|
13898
|
+
* Update Recurring Charge
|
|
13899
|
+
* @param {number} id Recurring Charge ID
|
|
13900
|
+
* @param {PostUpdateRecurringChargeRequest} postUpdateRecurringChargeRequest
|
|
13901
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13902
|
+
* @param {*} [options] Override http request option.
|
|
13903
|
+
* @throws {RequiredError}
|
|
13904
|
+
*/
|
|
13905
|
+
postUpdateRecurringCharge(id: number, postUpdateRecurringChargeRequest: PostUpdateRecurringChargeRequest, billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecurringCharge, any, {}>>;
|
|
13906
|
+
/**
|
|
13907
|
+
* Update Call Tariff
|
|
13908
|
+
* @param {number} callTariffPlanId Call Tariff ID
|
|
13909
|
+
* @param {PutAddCallTariffToCallTariffPlanRequest} putAddCallTariffToCallTariffPlanRequest
|
|
13910
|
+
* @param {*} [options] Override http request option.
|
|
13911
|
+
* @throws {RequiredError}
|
|
13912
|
+
*/
|
|
13913
|
+
putAddCallTariffToCallTariffPlan(callTariffPlanId: number, putAddCallTariffToCallTariffPlanRequest: PutAddCallTariffToCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
13914
|
+
/**
|
|
13915
|
+
* Update Service
|
|
13916
|
+
* @param {number} id Service ID
|
|
13917
|
+
* @param {PutAddServiceToServicePlanRequest} putAddServiceToServicePlanRequest
|
|
13918
|
+
* @param {*} [options] Override http request option.
|
|
13919
|
+
* @throws {RequiredError}
|
|
13920
|
+
*/
|
|
13921
|
+
putAddServiceToServicePlan(id: number, putAddServiceToServicePlanRequest: PutAddServiceToServicePlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Service, any, {}>>;
|
|
11413
13922
|
/**
|
|
11414
13923
|
* Transfer Billing Connection
|
|
11415
|
-
* @param {
|
|
13924
|
+
* @param {PutConnectionSearchRequest} putConnectionSearchRequest Transfer Request
|
|
11416
13925
|
* @param {number} [id] Connection ID
|
|
11417
13926
|
* @param {string} [cli] CLI
|
|
11418
13927
|
* @param {boolean} [skipDDis] Skip DDIs
|
|
11419
13928
|
* @param {*} [options] Override http request option.
|
|
11420
13929
|
* @throws {RequiredError}
|
|
11421
13930
|
*/
|
|
11422
|
-
|
|
13931
|
+
putConnectionSearch(putConnectionSearchRequest: PutConnectionSearchRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13932
|
+
/**
|
|
13933
|
+
* Convert Child To Parent
|
|
13934
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13935
|
+
* @param {*} [options] Override http request option.
|
|
13936
|
+
* @throws {RequiredError}
|
|
13937
|
+
*/
|
|
13938
|
+
putConvertChildToParent(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
13939
|
+
/**
|
|
13940
|
+
* Disable Bundles
|
|
13941
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13942
|
+
* @param {*} [options] Override http request option.
|
|
13943
|
+
* @throws {RequiredError}
|
|
13944
|
+
*/
|
|
13945
|
+
putDisableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13946
|
+
/**
|
|
13947
|
+
* Disable DDI Billing
|
|
13948
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13949
|
+
* @param {*} [options] Override http request option.
|
|
13950
|
+
* @throws {RequiredError}
|
|
13951
|
+
*/
|
|
13952
|
+
putDisableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13953
|
+
/**
|
|
13954
|
+
* Enable Bundles
|
|
13955
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13956
|
+
* @param {*} [options] Override http request option.
|
|
13957
|
+
* @throws {RequiredError}
|
|
13958
|
+
*/
|
|
13959
|
+
putEnableBundles(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13960
|
+
/**
|
|
13961
|
+
* Enable DDI Billing
|
|
13962
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13963
|
+
* @param {*} [options] Override http request option.
|
|
13964
|
+
* @throws {RequiredError}
|
|
13965
|
+
*/
|
|
13966
|
+
putEnableDdiBilling(billCustomerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
|
|
13967
|
+
/**
|
|
13968
|
+
* Update Base Service
|
|
13969
|
+
* @param {number} baseServiceId Base Service Plan ID
|
|
13970
|
+
* @param {PutGetBaseServicesRequest} putGetBaseServicesRequest
|
|
13971
|
+
* @param {*} [options] Override http request option.
|
|
13972
|
+
* @throws {RequiredError}
|
|
13973
|
+
*/
|
|
13974
|
+
putGetBaseServices(baseServiceId: number, putGetBaseServicesRequest: PutGetBaseServicesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService, any, {}>>;
|
|
13975
|
+
/**
|
|
13976
|
+
* Update Call Tariff
|
|
13977
|
+
* @param {number} callTariffPlanId Call Tariff Plan ID
|
|
13978
|
+
* @param {PutGetCallTariffPlanRequest} putGetCallTariffPlanRequest
|
|
13979
|
+
* @param {*} [options] Override http request option.
|
|
13980
|
+
* @throws {RequiredError}
|
|
13981
|
+
*/
|
|
13982
|
+
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
13983
|
+
/**
|
|
13984
|
+
* Update Connection
|
|
13985
|
+
* @param {number} connectionId Connection ID
|
|
13986
|
+
* @param {number} [billCustomerId] Customer ID
|
|
13987
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
13988
|
+
* @param {*} [options] Override http request option.
|
|
13989
|
+
* @throws {RequiredError}
|
|
13990
|
+
*/
|
|
13991
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
13992
|
+
/**
|
|
13993
|
+
* Update Price Group
|
|
13994
|
+
* @param {number} priceGroupId Price Group ID
|
|
13995
|
+
* @param {PutGetPriceGroupsRequest} putGetPriceGroupsRequest
|
|
13996
|
+
* @param {*} [options] Override http request option.
|
|
13997
|
+
* @throws {RequiredError}
|
|
13998
|
+
*/
|
|
13999
|
+
putGetPriceGroups(priceGroupId: number, putGetPriceGroupsRequest: PutGetPriceGroupsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PriceGroup, any, {}>>;
|
|
11423
14000
|
}
|
|
14001
|
+
export declare const GetGetConnectionsTypeEnum: {
|
|
14002
|
+
readonly SipTrunks: "SIP Trunks";
|
|
14003
|
+
readonly Broadband: "Broadband";
|
|
14004
|
+
readonly Ethernet: "Ethernet";
|
|
14005
|
+
readonly Mobile: "Mobile";
|
|
14006
|
+
readonly Wlr: "WLR";
|
|
14007
|
+
readonly Horizon: "Horizon";
|
|
14008
|
+
readonly Nts: "NTS";
|
|
14009
|
+
readonly Hosting: "Hosting";
|
|
14010
|
+
readonly Crm: "CRM";
|
|
14011
|
+
readonly StarterBundle: "Starter Bundle";
|
|
14012
|
+
readonly Other: "Other";
|
|
14013
|
+
readonly RecurringCharges: "Recurring Charges";
|
|
14014
|
+
};
|
|
14015
|
+
export type GetGetConnectionsTypeEnum = typeof GetGetConnectionsTypeEnum[keyof typeof GetGetConnectionsTypeEnum];
|
|
14016
|
+
export declare const GetGetServicesPlanDetailsTypeEnum: {
|
|
14017
|
+
readonly SipTrunks: "SIP Trunks";
|
|
14018
|
+
readonly Broadband: "Broadband";
|
|
14019
|
+
readonly Ethernet: "Ethernet";
|
|
14020
|
+
readonly Mobile: "Mobile";
|
|
14021
|
+
readonly Wlr: "WLR";
|
|
14022
|
+
readonly Horizon: "Horizon";
|
|
14023
|
+
readonly Nts: "NTS";
|
|
14024
|
+
readonly Hosting: "Hosting";
|
|
14025
|
+
readonly Crm: "CRM";
|
|
14026
|
+
readonly StarterBundle: "Starter Bundle";
|
|
14027
|
+
readonly Other: "Other";
|
|
14028
|
+
readonly RecurringCharges: "Recurring Charges";
|
|
14029
|
+
};
|
|
14030
|
+
export type GetGetServicesPlanDetailsTypeEnum = typeof GetGetServicesPlanDetailsTypeEnum[keyof typeof GetGetServicesPlanDetailsTypeEnum];
|
|
11424
14031
|
/**
|
|
11425
14032
|
* CRMApi - axios parameter creator
|
|
11426
14033
|
*/
|
|
@@ -17451,6 +20058,20 @@ export declare const RMAApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
17451
20058
|
* @throws {RequiredError}
|
|
17452
20059
|
*/
|
|
17453
20060
|
getGetRma: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20061
|
+
/**
|
|
20062
|
+
* Get Order by ID
|
|
20063
|
+
* @param {number} id Order ID
|
|
20064
|
+
* @param {*} [options] Override http request option.
|
|
20065
|
+
* @throws {RequiredError}
|
|
20066
|
+
*/
|
|
20067
|
+
getGetRmaOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20068
|
+
/**
|
|
20069
|
+
* Search for Orders to create an RMA
|
|
20070
|
+
* @param {string} [search] Search
|
|
20071
|
+
* @param {*} [options] Override http request option.
|
|
20072
|
+
* @throws {RequiredError}
|
|
20073
|
+
*/
|
|
20074
|
+
getSearchRmaOrders: (search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17454
20075
|
/**
|
|
17455
20076
|
* Approve an RMA
|
|
17456
20077
|
* @param {number} id
|
|
@@ -17663,6 +20284,20 @@ export declare const RMAApiFp: (configuration?: Configuration) => {
|
|
|
17663
20284
|
* @throws {RequiredError}
|
|
17664
20285
|
*/
|
|
17665
20286
|
getGetRma(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RmaDTO>>;
|
|
20287
|
+
/**
|
|
20288
|
+
* Get Order by ID
|
|
20289
|
+
* @param {number} id Order ID
|
|
20290
|
+
* @param {*} [options] Override http request option.
|
|
20291
|
+
* @throws {RequiredError}
|
|
20292
|
+
*/
|
|
20293
|
+
getGetRmaOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RmaOrderDTO>>;
|
|
20294
|
+
/**
|
|
20295
|
+
* Search for Orders to create an RMA
|
|
20296
|
+
* @param {string} [search] Search
|
|
20297
|
+
* @param {*} [options] Override http request option.
|
|
20298
|
+
* @throws {RequiredError}
|
|
20299
|
+
*/
|
|
20300
|
+
getSearchRmaOrders(search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RmaOrderSummaryDTO>>>;
|
|
17666
20301
|
/**
|
|
17667
20302
|
* Approve an RMA
|
|
17668
20303
|
* @param {number} id
|
|
@@ -17875,6 +20510,20 @@ export declare const RMAApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
17875
20510
|
* @throws {RequiredError}
|
|
17876
20511
|
*/
|
|
17877
20512
|
getGetRma(id: number, options?: RawAxiosRequestConfig): AxiosPromise<RmaDTO>;
|
|
20513
|
+
/**
|
|
20514
|
+
* Get Order by ID
|
|
20515
|
+
* @param {number} id Order ID
|
|
20516
|
+
* @param {*} [options] Override http request option.
|
|
20517
|
+
* @throws {RequiredError}
|
|
20518
|
+
*/
|
|
20519
|
+
getGetRmaOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<RmaOrderDTO>;
|
|
20520
|
+
/**
|
|
20521
|
+
* Search for Orders to create an RMA
|
|
20522
|
+
* @param {string} [search] Search
|
|
20523
|
+
* @param {*} [options] Override http request option.
|
|
20524
|
+
* @throws {RequiredError}
|
|
20525
|
+
*/
|
|
20526
|
+
getSearchRmaOrders(search?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RmaOrderSummaryDTO>>;
|
|
17878
20527
|
/**
|
|
17879
20528
|
* Approve an RMA
|
|
17880
20529
|
* @param {number} id
|
|
@@ -18087,6 +20736,20 @@ export declare class RMAApi extends BaseAPI {
|
|
|
18087
20736
|
* @throws {RequiredError}
|
|
18088
20737
|
*/
|
|
18089
20738
|
getGetRma(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RmaDTO, any, {}>>;
|
|
20739
|
+
/**
|
|
20740
|
+
* Get Order by ID
|
|
20741
|
+
* @param {number} id Order ID
|
|
20742
|
+
* @param {*} [options] Override http request option.
|
|
20743
|
+
* @throws {RequiredError}
|
|
20744
|
+
*/
|
|
20745
|
+
getGetRmaOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RmaOrderDTO, any, {}>>;
|
|
20746
|
+
/**
|
|
20747
|
+
* Search for Orders to create an RMA
|
|
20748
|
+
* @param {string} [search] Search
|
|
20749
|
+
* @param {*} [options] Override http request option.
|
|
20750
|
+
* @throws {RequiredError}
|
|
20751
|
+
*/
|
|
20752
|
+
getSearchRmaOrders(search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RmaOrderSummaryDTO[], any, {}>>;
|
|
18090
20753
|
/**
|
|
18091
20754
|
* Approve an RMA
|
|
18092
20755
|
* @param {number} id
|