1.2.62 • Published 6 years ago

dnl_api v1.2.62

Weekly downloads
1
License
Unlicense
Repository
-
Last release
6 years ago

dnl_api

DnlApi - JavaScript client for dnl_api No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.2.62
  • Package version: 1.2.62
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install dnl_api --save
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your dnl_api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('dnl_api') in javascript files from the directory you ran the last command above from.

git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var DnlApi = require('dnl_api');

var defaultClient = DnlApi.ApiClient.instance;

// Configure API key authorization: auth_token
var auth_token = defaultClient.authentications['auth_token'];
auth_token.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//auth_token.apiKeyPrefix['X-Auth-Token'] = "Token"

var api = new DnlApi.AgentApi()

var agentId = 789; // {Number} Parent agent id

var opts = { 
  'body': new DnlApi.AgentCarriersAdd() // {AgentCarriersAdd} Carriers to add
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.agentAgentIdAddCarrierPost(agentId, opts, callback);

Documentation for API Endpoints

All URIs are relative to https://198.100.149.164:8000/v1

ClassMethodHTTP requestDescription
DnlApi.AgentApiagentAgentIdAddCarrierPostPOST /agent/{agent_id}/add_carrier
DnlApi.AgentApiagentAgentIdCarrierGetGET /agent/{agent_id}/carrier
DnlApi.AgentApiagentAgentIdCarrierIdDeleteDELETE /agent/{agent_id}/{carrier_id}
DnlApi.AgentApiagentAgentIdCarrierPatchPATCH /agent/{agent_id}/carrier
DnlApi.AgentApiagentAgentIdDeleteDELETE /agent/{agent_id}
DnlApi.AgentApiagentAgentIdGetGET /agent/{agent_id}
DnlApi.AgentApiagentAgentIdPatchPATCH /agent/{agent_id}
DnlApi.AgentApiagentAllDeleteDELETE /agent/all
DnlApi.AgentApiagentAllPatchPATCH /agent/all
DnlApi.AgentApiagentClientsGetGET /agent/clients
DnlApi.AgentApiagentCommissionGetGET /agent/commission
DnlApi.AgentApiagentCreatePostPOST /agent/create
DnlApi.AgentApiagentListGetGET /agent/list
DnlApi.AgentApiagentNotAssignedClientsGetGET /agent/not_assigned_clients
DnlApi.AgentPortalApihomeAgentClientsGetGET /home/agent/clients
DnlApi.AuthApiauthAsAgentPostPOST /auth/as_agent
DnlApi.AuthApiauthAsClientPostPOST /auth/as_client
DnlApi.AuthApiauthCheckPasswordPostPOST /auth/check-password
DnlApi.AuthApiauthCheckTokenPostPOST /auth/check-token
DnlApi.AuthApiauthPostPOST /auth
DnlApi.AuthApiauthResetEmailPostPOST /auth/reset_email
DnlApi.AuthApiauthResetTokenGetGET /auth/reset/{token}
DnlApi.AuthApiregistrationAllDeleteDELETE /registration/all
DnlApi.AuthApiregistrationCreatePostPOST /registration/create
DnlApi.AuthApiregistrationIdApprovePatchPATCH /registration/{id}/approve
DnlApi.AuthApiregistrationIdDeleteDELETE /registration/{id}
DnlApi.AuthApiregistrationIdGetGET /registration/{id}
DnlApi.AuthApiregistrationIdPatchPATCH /registration/{id}
DnlApi.AuthApiregistrationListGetGET /registration/list
DnlApi.AuthApiuserAllDeleteDELETE /user/all
DnlApi.AuthApiuserAllPatchPATCH /user/all
DnlApi.AuthApiuserCreatePostPOST /user/create
DnlApi.AuthApiuserGetGET /user
DnlApi.AuthApiuserListGetGET /user/list
DnlApi.AuthApiuserUserIdDeleteDELETE /user/{user_id}
DnlApi.AuthApiuserUserIdGetGET /user/{user_id}
DnlApi.AuthApiuserUserIdPatchPATCH /user/{user_id}
DnlApi.CarrierApicarrierAllDeleteDELETE /carrier/all
DnlApi.CarrierApicarrierAllPatchPATCH /carrier/all
DnlApi.CarrierApicarrierBasicCreatePostPOST /carrier/basic/create
DnlApi.CarrierApicarrierClientIdAlertsGetGET /carrier/{client_id}/alerts
DnlApi.CarrierApicarrierClientIdAlertsPatchPATCH /carrier/{client_id}/alerts
DnlApi.CarrierApicarrierClientIdContactsGetGET /carrier/{client_id}/contacts
DnlApi.CarrierApicarrierClientIdContactsPatchPATCH /carrier/{client_id}/contacts
DnlApi.CarrierApicarrierClientIdDeleteDELETE /carrier/{client_id}
DnlApi.CarrierApicarrierClientIdEgressTrunkListGetGET /carrier/{client_id}/egress_trunk/list
DnlApi.CarrierApicarrierClientIdEgressTrunkPostPOST /carrier/{client_id}/egress_trunk
DnlApi.CarrierApicarrierClientIdGetGET /carrier/{client_id}
DnlApi.CarrierApicarrierClientIdIngressTrunkListGetGET /carrier/{client_id}/ingress_trunk/list
DnlApi.CarrierApicarrierClientIdIngressTrunkPostPOST /carrier/{client_id}/ingress_trunk
DnlApi.CarrierApicarrierClientIdInvoicesGetGET /carrier/{client_id}/invoices
DnlApi.CarrierApicarrierClientIdInvoicesPatchPATCH /carrier/{client_id}/invoices
DnlApi.CarrierApicarrierClientIdLowBalanceConfigGetGET /carrier/{client_id}/low_balance_config
DnlApi.CarrierApicarrierClientIdLowBalanceConfigPatchPATCH /carrier/{client_id}/low_balance_config
DnlApi.CarrierApicarrierClientIdPasswordPatchPATCH /carrier/{client_id}/password
DnlApi.CarrierApicarrierClientIdPatchPATCH /carrier/{client_id}
DnlApi.CarrierApicarrierClientIdPortalGetGET /carrier/{client_id}/portal
DnlApi.CarrierApicarrierClientIdPortalPatchPATCH /carrier/{client_id}/portal
DnlApi.CarrierApicarrierClientIdSaveAsTemplatePostPOST /carrier/{client_id}/save_as_template
DnlApi.CarrierApicarrierClientIdSccGetGET /carrier/{client_id}/scc
DnlApi.CarrierApicarrierClientIdSccPatchPATCH /carrier/{client_id}/scc
DnlApi.CarrierApicarrierClientIdSendLowBalanceAlertPatchPATCH /carrier/{client_id}/send_low_balance_alert
DnlApi.CarrierApicarrierClientIdSendWelcomPatchPATCH /carrier/{client_id}/send_welcom
DnlApi.CarrierApicarrierCreateFromTemplateIdPostPOST /carrier/create_from_template/{id}
DnlApi.CarrierApicarrierFullClientIdGetGET /carrier/full/{client_id}
DnlApi.CarrierApicarrierFullClientIdPatchPATCH /carrier/full/{client_id}
DnlApi.CarrierApicarrierFullCreatePostPOST /carrier/full/create
DnlApi.CarrierApicarrierGroupAllDeleteDELETE /carrier/group/all
DnlApi.CarrierApicarrierGroupCreatePostPOST /carrier/group/create
DnlApi.CarrierApicarrierGroupGroupIdDeleteDELETE /carrier/group/{group_id}
DnlApi.CarrierApicarrierGroupGroupIdGetGET /carrier/group/{group_id}
DnlApi.CarrierApicarrierGroupGroupIdPatchPATCH /carrier/group/{group_id}
DnlApi.CarrierApicarrierGroupListGetGET /carrier/group/list
DnlApi.CarrierApicarrierListGetGET /carrier/list
DnlApi.CarrierApicarrierSimpleListGetGET /carrier/simple/list
DnlApi.CarrierApiclientCreditClientIdPatchPATCH /client/credit/{client_id}
DnlApi.CarrierApiclientCreditListGetGET /client/credit/list
DnlApi.CarrierApiclientPastDueListGetGET /client/past_due/list
DnlApi.CarrierApiegressCapacityEgressIdIngressIdDeleteDELETE /egress_capacity/{egress_id}/{ingress_id}
DnlApi.CarrierApiegressCapacityEgressIdIngressIdGetGET /egress_capacity/{egress_id}/{ingress_id}
DnlApi.CarrierApiegressCapacityEgressIdIngressIdPatchPATCH /egress_capacity/{egress_id}/{ingress_id}
DnlApi.CarrierApiegressProfileIdDeleteDELETE /egress_profile/{id}
DnlApi.CarrierApiegressProfileIdGetGET /egress_profile/{id}
DnlApi.CarrierApiegressProfileIdPatchPATCH /egress_profile/{id}
DnlApi.CarrierApiegressTrunkResourceIdCapacityListGetGET /egress_trunk/{resource_id}/capacity/list
DnlApi.CarrierApiegressTrunkResourceIdCapacityPostPOST /egress_trunk/{resource_id}/capacity
DnlApi.CarrierApiegressTrunkResourceIdDeleteDELETE /egress_trunk/{resource_id}
DnlApi.CarrierApiegressTrunkResourceIdGetGET /egress_trunk/{resource_id}
DnlApi.CarrierApiegressTrunkResourceIdPassGetGET /egress_trunk/{resource_id}/pass
DnlApi.CarrierApiegressTrunkResourceIdPassPatchPATCH /egress_trunk/{resource_id}/pass
DnlApi.CarrierApiegressTrunkResourceIdPatchPATCH /egress_trunk/{resource_id}
DnlApi.CarrierApiegressTrunkResourceIdProfileListGetGET /egress_trunk/{resource_id}/profile/list
DnlApi.CarrierApiegressTrunkResourceIdProfilePostPOST /egress_trunk/{resource_id}/profile
DnlApi.CarrierApiingressTrunkResourceIdCapacityListGetGET /ingress_trunk/{resource_id}/capacity/list
DnlApi.CarrierApiingressTrunkResourceIdDeleteDELETE /ingress_trunk/{resource_id}
DnlApi.CarrierApiingressTrunkResourceIdGetGET /ingress_trunk/{resource_id}
DnlApi.CarrierApiingressTrunkResourceIdPatchPATCH /ingress_trunk/{resource_id}
DnlApi.ClientPortalApihomeClientGatewayPaymentsGetGET /home/client/gateway_payments
DnlApi.ClientPortalApihomeClientGetGET /home/client
DnlApi.ClientPortalApihomeClientPaymentsGetGET /home/client/payments
DnlApi.ConfigApiconfigAutoCdrFormatEditPatchPATCH /config/auto_cdr_format/edit
DnlApi.ConfigApiconfigCarrierTemplateAllDeleteDELETE /config/carrier_template/all
DnlApi.ConfigApiconfigCarrierTemplateCreatePostPOST /config/carrier_template/create
DnlApi.ConfigApiconfigCarrierTemplateIdDeleteDELETE /config/carrier_template/{id}
DnlApi.ConfigApiconfigCarrierTemplateIdGetGET /config/carrier_template/{id}
DnlApi.ConfigApiconfigCarrierTemplateIdPatchPATCH /config/carrier_template/{id}
DnlApi.ConfigApiconfigCarrierTemplateListGetGET /config/carrier_template/list
DnlApi.ConfigApiconfigCdrVisibilityCreatePostPOST /config/cdr_visibility/create
DnlApi.ConfigApiconfigCdrVisibilityEditPatchPATCH /config/cdr_visibility/edit
DnlApi.ConfigApiconfigCdrVisibilityIdDeleteDELETE /config/cdr_visibility/{id}
DnlApi.ConfigApiconfigCdrVisibilityIdGetGET /config/cdr_visibility/{id}
DnlApi.ConfigApiconfigCdrVisibilityIdPatchPATCH /config/cdr_visibility/{id}
DnlApi.ConfigApiconfigCdrVisibilityListGetGET /config/cdr_visibility/list
DnlApi.ConfigApiconfigCountryCreatePostPOST /config/country/create
DnlApi.ConfigApiconfigCountryListGetGET /config/country/list
DnlApi.ConfigApiconfigCountryTimeProfileIdDeleteDELETE /config/country/{time_profile_id}
DnlApi.ConfigApiconfigCountryTimeProfileIdGetGET /config/country/{time_profile_id}
DnlApi.ConfigApiconfigCountryTimeProfileIdPatchPATCH /config/country/{time_profile_id}
DnlApi.ConfigApiconfigEgressTrunkTemplateAllDeleteDELETE /config/egress_trunk_template/all
DnlApi.ConfigApiconfigEgressTrunkTemplateApplyResourceTemplateIdClientIdPostPOST /config/egress_trunk_template/apply/{resource_template_id}/{client_id}
DnlApi.ConfigApiconfigEgressTrunkTemplateCreatePostPOST /config/egress_trunk_template/create
DnlApi.ConfigApiconfigEgressTrunkTemplateListGetGET /config/egress_trunk_template/list
DnlApi.ConfigApiconfigEgressTrunkTemplateResourceTemplateIdDeleteDELETE /config/egress_trunk_template/{resource_template_id}
DnlApi.ConfigApiconfigEgressTrunkTemplateResourceTemplateIdGetGET /config/egress_trunk_template/{resource_template_id}
DnlApi.ConfigApiconfigEgressTrunkTemplateResourceTemplateIdPatchPATCH /config/egress_trunk_template/{resource_template_id}
DnlApi.ConfigApiconfigEmailsGetGET /config/emails
DnlApi.ConfigApiconfigEmailsPatchPATCH /config/emails
DnlApi.ConfigApiconfigExportErrorsIdGetGET /config/export_errors/{id}
DnlApi.ConfigApiconfigExportIdGetGET /config/export/{id}
DnlApi.ConfigApiconfigExportPostPOST /config/export
DnlApi.ConfigApiconfigExportPublicIdGetGET /config/export/public/{id}
DnlApi.ConfigApiconfigFailoverGlobalCreatePostPOST /config/failover/global/create
DnlApi.ConfigApiconfigFailoverGlobalIdDeleteDELETE /config/failover/global/{id}
DnlApi.ConfigApiconfigFailoverGlobalIdGetGET /config/failover/global/{id}
DnlApi.ConfigApiconfigFailoverGlobalIdPatchPATCH /config/failover/global/{id}
DnlApi.ConfigApiconfigFailoverGlobalListGetGET /config/failover/global/list
DnlApi.ConfigApiconfigFailoverGlobalPatchPATCH /config/failover/global
DnlApi.ConfigApiconfigFailoverOriginationIdGetGET /config/failover/origination/{id}
DnlApi.ConfigApiconfigFailoverOriginationIdPatchPATCH /config/failover/origination/{id}
DnlApi.ConfigApiconfigFailoverOriginationListGetGET /config/failover/origination/list
DnlApi.ConfigApiconfigFailoverOriginationPatchPATCH /config/failover/origination
DnlApi.ConfigApiconfigFailoverTerminationIdGetGET /config/failover/termination/{id}
DnlApi.ConfigApiconfigFailoverTerminationIdPatchPATCH /config/failover/termination/{id}
DnlApi.ConfigApiconfigFailoverTerminationListGetGET /config/failover/termination/list
DnlApi.ConfigApiconfigFailoverTerminationPatchPATCH /config/failover/termination
DnlApi.ConfigApiconfigFtpAllDeleteDELETE /config/ftp/all
DnlApi.ConfigApiconfigFtpAllPatchPATCH /config/ftp/all
DnlApi.ConfigApiconfigFtpCreatePostPOST /config/ftp/create
DnlApi.ConfigApiconfigFtpIdDeleteDELETE /config/ftp/{id}
DnlApi.ConfigApiconfigFtpIdGetGET /config/ftp/{id}
DnlApi.ConfigApiconfigFtpIdPatchPATCH /config/ftp/{id}
DnlApi.ConfigApiconfigFtpListGetGET /config/ftp/list
DnlApi.ConfigApiconfigImportIdKillPostPOST /config/import/{id}/kill
DnlApi.ConfigApiconfigImportIdRunPostPOST /config/import/{id}/run
DnlApi.ConfigApiconfigImportPostPOST /config/import
DnlApi.ConfigApiconfigIngressTrunkTemplateAllDeleteDELETE /config/ingress_trunk_template/all
DnlApi.ConfigApiconfigIngressTrunkTemplateApplyResourceTemplateIdClientIdPostPOST /config/ingress_trunk_template/apply/{resource_template_id}/{client_id}
DnlApi.ConfigApiconfigIngressTrunkTemplateCreatePostPOST /config/ingress_trunk_template/create
DnlApi.ConfigApiconfigIngressTrunkTemplateListGetGET /config/ingress_trunk_template/list
DnlApi.ConfigApiconfigIngressTrunkTemplateResourceTemplateIdDeleteDELETE /config/ingress_trunk_template/{resource_template_id}
DnlApi.ConfigApiconfigIngressTrunkTemplateResourceTemplateIdGetGET /config/ingress_trunk_template/{resource_template_id}
DnlApi.ConfigApiconfigIngressTrunkTemplateResourceTemplateIdPatchPATCH /config/ingress_trunk_template/{resource_template_id}
DnlApi.ConfigApiconfigInvoiceGetGET /config/invoice
DnlApi.ConfigApiconfigInvoicePatchPATCH /config/invoice
DnlApi.ConfigApiconfigLoginGetGET /config/login
DnlApi.ConfigApiconfigLoginPatchPATCH /config/login
DnlApi.ConfigApiconfigLoginPublicGetGET /config/login/public
DnlApi.ConfigApiconfigLrnGetGET /config/lrn
DnlApi.ConfigApiconfigLrnPatchPATCH /config/lrn
DnlApi.ConfigApiconfigMailSenderAllDeleteDELETE /config/mail_sender/all
DnlApi.ConfigApiconfigMailSenderCreatePostPOST /config/mail_sender/create
DnlApi.ConfigApiconfigMailSenderIdDeleteDELETE /config/mail_sender/{id}
DnlApi.ConfigApiconfigMailSenderIdGetGET /config/mail_sender/{id}
DnlApi.ConfigApiconfigMailSenderIdPatchPATCH /config/mail_sender/{id}
DnlApi.ConfigApiconfigMailSenderIdTestPatchPATCH /config/mail_sender/{id}/test
DnlApi.ConfigApiconfigMailSenderListGetGET /config/mail_sender/list
DnlApi.ConfigApiconfigMailTemplateListGetGET /config/mail_template/list
DnlApi.ConfigApiconfigMailTemplateTitleGetGET /config/mail_template/{title}
DnlApi.ConfigApiconfigMailTemplateTitlePatchPATCH /config/mail_template/{title}
DnlApi.ConfigApiconfigPaymentGetGET /config/payment
DnlApi.ConfigApiconfigPaymentPatchPATCH /config/payment
DnlApi.ConfigApiconfigPaymentTermAllDeleteDELETE /config/payment_term/all
DnlApi.ConfigApiconfigPaymentTermCreatePostPOST /config/payment_term/create
DnlApi.ConfigApiconfigPaymentTermListGetGET /config/payment_term/list
DnlApi.ConfigApiconfigPaymentTermPaymentTermIdDeleteDELETE /config/payment_term/{payment_term_id}
DnlApi.ConfigApiconfigPaymentTermPaymentTermIdGetGET /config/payment_term/{payment_term_id}
DnlApi.ConfigApiconfigPaymentTermPaymentTermIdPatchPATCH /config/payment_term/{payment_term_id}
DnlApi.ConfigApiconfigRoleCreatePostPOST /config/role/create
DnlApi.ConfigApiconfigRoleListGetGET /config/role/list
DnlApi.ConfigApiconfigRolePrivilegeRolePrivilegeIdDeleteDELETE /config/role/privilege/{role_privilege_id}
DnlApi.ConfigApiconfigRolePrivilegeRolePrivilegeIdGetGET /config/role/privilege/{role_privilege_id}
DnlApi.ConfigApiconfigRolePrivilegeRolePrivilegeIdPatchPATCH /config/role/privilege/{role_privilege_id}
DnlApi.ConfigApiconfigRoleRoleIdDefaultsPatchPATCH /config/role/{role_id}/defaults
DnlApi.ConfigApiconfigRoleRoleIdDeleteDELETE /config/role/{role_id}
DnlApi.ConfigApiconfigRoleRoleIdGetGET /config/role/{role_id}
DnlApi.ConfigApiconfigRoleRoleIdPatchPATCH /config/role/{role_id}
DnlApi.ConfigApiconfigRoleRoleIdPrivilegeListGetGET /config/role/{role_id}/privilege/list
DnlApi.ConfigApiconfigRoleRoleIdPrivilegesGetGET /config/role/{role_id}/privileges
DnlApi.ConfigApiconfigRoleRoleIdSystemFunctionIdPrivilegePostPOST /config/role/{role_id}/{system_function_id}/privilege
DnlApi.ConfigApiconfigRouteErrorIdGetGET /config/route_error/{id}
DnlApi.ConfigApiconfigRouteErrorIdPatchPATCH /config/route_error/{id}
DnlApi.ConfigApiconfigRouteErrorListGetGET /config/route_error/list
DnlApi.ConfigApiconfigRouteErrorPatchPATCH /config/route_error
DnlApi.ConfigApiconfigSendRateTemplateAllDeleteDELETE /config/send_rate_template/all
DnlApi.ConfigApiconfigSendRateTemplateCreatePostPOST /config/send_rate_template/create
DnlApi.ConfigApiconfigSendRateTemplateIdDeleteDELETE /config/send_rate_template/{id}
DnlApi.ConfigApiconfigSendRateTemplateIdGetGET /config/send_rate_template/{id}
DnlApi.ConfigApiconfigSendRateTemplateIdPatchPATCH /config/send_rate_template/{id}
DnlApi.ConfigApiconfigSendRateTemplateListGetGET /config/send_rate_template/list
DnlApi.ConfigApiconfigSystemFunctionListGetGET /config/system_function/list
DnlApi.ConfigApiconfigSystemFunctionSystemFunctionIdDeleteDELETE /config/system_function/{system_function_id}
DnlApi.ConfigApiconfigSystemFunctionSystemFunctionIdGetGET /config/system_function/{system_function_id}
DnlApi.ConfigApiconfigSystemFunctionSystemFunctionIdPatchPATCH /config/system_function/{system_function_id}
DnlApi.ConfigApiconfigSystemFunctionSystemFunctionIdPostPOST /config/system_function/{system_function_id}
DnlApi.ConfigApiconfigSystemGetGET /config/system
DnlApi.ConfigApiconfigSystemModulesListGetGET /config/system_modules/list
DnlApi.ConfigApiconfigSystemPatchPATCH /config/system
DnlApi.ConfigApiconfigTimeProfileAllDeleteDELETE /config/time_profile/all
DnlApi.ConfigApiconfigTimeProfileCreatePostPOST /config/time_profile/create
DnlApi.ConfigApiconfigTimeProfileListGetGET /config/time_profile/list
DnlApi.ConfigApiconfigTimeProfileTimeProfileIdDeleteDELETE /config/time_profile/{time_profile_id}
DnlApi.ConfigApiconfigTimeProfileTimeProfileIdGetGET /config/time_profile/{time_profile_id}
DnlApi.ConfigApiconfigTimeProfileTimeProfileIdPatchPATCH /config/time_profile/{time_profile_id}
DnlApi.ConfigApiconfigTimeoutsGetGET /config/timeouts
DnlApi.ConfigApiconfigTimeoutsPatchPATCH /config/timeouts
DnlApi.ConfigApiconfigUsJurisdictionprefixAllDeleteDELETE /config/us_jurisdictionprefix/all
DnlApi.ConfigApiconfigUsJurisdictionprefixCreatePostPOST /config/us_jurisdictionprefix/create
DnlApi.ConfigApiconfigUsJurisdictionprefixIdDeleteDELETE /config/us_jurisdictionprefix/{id}
DnlApi.ConfigApiconfigUsJurisdictionprefixIdGetGET /config/us_jurisdictionprefix/{id}
DnlApi.ConfigApiconfigUsJurisdictionprefixIdPatchPATCH /config/us_jurisdictionprefix/{id}
DnlApi.ConfigApiconfigUsJurisdictionprefixListGetGET /config/us_jurisdictionprefix/list
DnlApi.FinanceApicarrierClientIdActualBalanceGetGET /carrier/{client_id}/actual_balance
DnlApi.FinanceApicarrierClientIdBalanceGetGET /carrier/{client_id}/balance
DnlApi.FinanceApicarrierClientIdGatewayPaymentPostPOST /carrier/{client_id}/gateway_payment
DnlApi.FinanceApicarrierClientIdGatewayPaymentsGetGET /carrier/{client_id}/gateway_payments
DnlApi.FinanceApicarrierClientIdInvoiceListGetGET /carrier/{client_id}/invoice/list
DnlApi.FinanceApicarrierClientIdInvoicePostPOST /carrier/{client_id}/invoice
DnlApi.FinanceApicarrierClientIdManualInvoicePostPOST /carrier/{client_id}/manual_invoice
DnlApi.FinanceApicarrierClientIdMutualBalanceGetGET /carrier/{client_id}/mutual_balance
DnlApi.FinanceApicarrierClientIdPaymentListGetGET /carrier/{client_id}/payment/list
DnlApi.FinanceApicarrierClientIdPaymentPostPOST /carrier/{client_id}/payment
DnlApi.FinanceApicarrierClientIdRegenerateBalancePostPOST /carrier/{client_id}/regenerate_balance
DnlApi.FinanceApicarrierClientIdTransactionsListGetGET /carrier/{client_id}/transactions/list
DnlApi.FinanceApifinanceAllPaymentListGetGET /finance/all_payment/list
DnlApi.FinanceApifinanceAutoInvoiceListGetGET /finance/auto_invoice/list
DnlApi.FinanceApifinanceGatewayPaymentsGetGET /finance/gateway_payments
DnlApi.FinanceApifinanceInvoiceAllDeleteDELETE /finance/invoice/all
DnlApi.FinanceApifinanceInvoiceFileInvoiceIdGetGET /finance/invoice/file/{invoice_id}
DnlApi.FinanceApifinanceInvoiceInvoiceIdDeleteDELETE /finance/invoice/{invoice_id}
DnlApi.FinanceApifinanceInvoiceInvoiceIdGetGET /finance/invoice/{invoice_id}
DnlApi.FinanceApifinanceInvoiceInvoiceIdPatchPATCH /finance/invoice/{invoice_id}
DnlApi.FinanceApifinanceInvoiceListGetGET /finance/invoice/list
DnlApi.FinanceApifinanceInvoiceLogIdSendPatchPATCH /finance/invoice_log/{id}/send
DnlApi.FinanceApifinanceInvoicePostPOST /finance/invoice
DnlApi.FinanceApifinancePaymentClientPaymentIdDeleteDELETE /finance/payment/{client_payment_id}
DnlApi.FinanceApifinancePaymentClientPaymentIdEditAndSendNotePostPOST /finance/payment/{client_payment_id}/edit_and_send_note
DnlApi.FinanceApifinancePaymentClientPaymentIdGetGET /finance/payment/{client_payment_id}
DnlApi.FinanceApifinancePaymentClientPaymentIdPatchPATCH /finance/payment/{client_payment_id}
DnlApi.FinanceApifinanceReceivedPaymentListGetGET /finance/received_payment/list
DnlApi.FinanceApifinanceSentPaymentClientPaymentIdDeleteDELETE /finance/sent_payment/{client_payment_id}
DnlApi.FinanceApifinanceSentPaymentClientPaymentIdGetGET /finance/sent_payment/{client_payment_id}
DnlApi.FinanceApifinanceSentPaymentClientPaymentIdPatchPATCH /finance/sent_payment/{client_payment_id}
DnlApi.FinanceApifinanceSentPaymentListGetGET /finance/sent_payment/list
DnlApi.FinanceApifinanceSentPaymentPostPOST /finance/sent_payment
DnlApi.LogApilogAlertRuleGetGET /log/alert_rule
DnlApi.LogApilogAuthGetGET /log/auth
DnlApi.LogApilogBalanceGetGET /log/balance
DnlApi.LogApilogCreditGetGET /log/credit
DnlApi.LogApilogEmailGetGET /log/email
DnlApi.LogApilogExportGetGET /log/export
DnlApi.LogApilogFraudDetectionGetGET /log/fraud_detection
DnlApi.LogApilogFtpGetGET /log/ftp
DnlApi.LogApilogFtpServerGetGET /log/ftp_server
DnlApi.LogApilogImportGetGET /log/import
DnlApi.LogApilogInvoiceCdrGetGET /log/invoice_cdr
DnlApi.LogApilogInvoiceGetGET /log/invoice
DnlApi.LogApilogIpModifyGetGET /log/ip_modify
DnlApi.LogApilogLicenseModifyGetGET /log/license_modify
DnlApi.LogApilogModifyGetGET /log/modify
DnlApi.LogApilogOrigGetGET /log/orig
DnlApi.LogApilogRateDownloadGetGET /log/rate_download
DnlApi.LogApilogRateGenerationGetGET /log/rate_generation
DnlApi.LogApilogRateMassEditGetGET /log/rate_mass_edit
DnlApi.LogApilogRateUploadGetGET /log/rate_upload
DnlApi.LogApilogRegenerateBalanceGetGET /log/regenerate_balance
DnlApi.LogApilogRerateCdrDownloadGetGET /log/rerate/cdr_download
DnlApi.LogApilogRerateExecGetGET /log/rerate/exec
DnlApi.LogApilogRetrievePasswordGetGET /log/retrieve_password
DnlApi.LogApilogRevisionsGetGET /log/revisions
DnlApi.LogApilogRevisionsIdRestorePostPOST /log/revisions/{id}/restore
DnlApi.LogApilogScheduledReportGetGET /log/scheduled_report
DnlApi.LogApilogSchedulerGetGET /log/scheduler
DnlApi.LogApilogSipRegisterGetGET /log/sip_register
DnlApi.LogApilogSqlGetGET /log/sql
DnlApi.LogApilogUserSignonGetGET /log/user_signon
DnlApi.LogApilogVersionsGetGET /log/versions
DnlApi.MonitoringApimonitoringFraudDetectionAllDeleteDELETE /monitoring/fraud_detection/all
DnlApi.MonitoringApimonitoringFraudDetectionAllPatchPATCH /monitoring/fraud_detection/all
DnlApi.MonitoringApimonitoringFraudDetectionIdDeleteDELETE /monitoring/fraud_detection/{id}
DnlApi.MonitoringApimonitoringFraudDetectionIdGetGET /monitoring/fraud_detection/{id}
DnlApi.MonitoringApimonitoringFraudDetectionIdPatchPATCH /monitoring/fraud_detection/{id}
DnlApi.MonitoringApimonitoringFraudDetectionListGetGET /monitoring/fraud_detection/list
DnlApi.MonitoringApimonitoringFraudDetectionPostPOST /monitoring/fraud_detection
DnlApi.MonitoringApimonitoringLoopDetectionAllDeleteDELETE /monitoring/loop_detection/all
DnlApi.MonitoringApimonitoringLoopDetectionAllPatchPATCH /monitoring/loop_detection/all
DnlApi.MonitoringApimonitoringLoopDetectionIdDeleteDELETE /monitoring/loop_detection/{id}
DnlApi.MonitoringApimonitoringLoopDetectionIdGetGET /monitoring/loop_detection/{id}
DnlApi.MonitoringApimonitoringLoopDetectionIdPatchPATCH /monitoring/loop_detection/{id}
DnlApi.MonitoringApimonitoringLoopDetectionListGetGET /monitoring/loop_detection/list
DnlApi.MonitoringApimonitoringLoopDetectionPostPOST /monitoring/loop_detection
DnlApi.MonitoringApimonitoringRuleAllDeleteDELETE /monitoring/rule/all
DnlApi.MonitoringApimonitoringRuleAllPatchPATCH /monitoring/rule/all
DnlApi.MonitoringApimonitoringRuleIdDeleteDELETE /monitoring/rule/{id}
DnlApi.MonitoringApimonitoringRuleIdGetGET /monitoring/rule/{id}
DnlApi.MonitoringApimonitoringRuleIdPatchPATCH /monitoring/rule/{id}
DnlApi.MonitoringApimonitoringRuleListGetGET /monitoring/rule/list
DnlApi.MonitoringApimonitoringRulePostPOST /monitoring/rule
DnlApi.OriginationApididBillingRuleAllDeleteDELETE /did/billing_rule/all
DnlApi.OriginationApididBillingRuleCreatePostPOST /did/billing_rule/create
DnlApi.OriginationApididBillingRuleIdDeleteDELETE /did/billing_rule/{id}
DnlApi.OriginationApididBillingRuleIdGetGET /did/billing_rule/{id}
DnlApi.OriginationApididBillingRuleIdPatchPATCH /did/billing_rule/{id}
DnlApi.OriginationApididBillingRuleIdRateParamsPatchPATCH /did/billing_rule/{id}/rate_params
DnlApi.OriginationApididBillingRuleListGetGET /did/billing_rule/list
DnlApi.OriginationApididClientAllDeleteDELETE /did/client/all
DnlApi.OriginationApididClientAllPatchPATCH /did/client/all
DnlApi.OriginationApididClientClientIdDeleteDELETE /did/client/{client_id}
DnlApi.OriginationApididClientClientIdGetGET /did/client/{client_id}
DnlApi.OriginationApididClientClientIdPatchPATCH /did/client/{client_id}
DnlApi.OriginationApididClientCreatePostPOST /did/client/create
DnlApi.OriginationApididClientIdOrigInvoicePostPOST /did/{client_id}/orig_invoice
DnlApi.OriginationApididClientListGetGET /did/client/list
DnlApi.OriginationApididOrigInvoiceAllDeleteDELETE /did/orig_invoice/all
DnlApi.OriginationApididOrigInvoiceInvoiceIdDeleteDELETE /did/orig_invoice/{invoice_id}
DnlApi.OriginationApididOrigInvoiceInvoiceIdGetGET /did/orig_invoice/{invoice_id}
DnlApi.OriginationApididOrigInvoiceInvoiceIdPatchPATCH /did/orig_invoice/{invoice_id}
DnlApi.OriginationApididOrigInvoiceListGetGET /did/orig_invoice/list
DnlApi.OriginationApididRepositoryAllDeleteDELETE /did/repository/all
DnlApi.OriginationApididRepositoryAvailableListGetGET /did/repository/available/list
DnlApi.OriginationApididRepositoryCreatePostPOST /did/repository/create
DnlApi.OriginationApididRepositoryIdDeleteDELETE /did/repository/{id}
DnlApi.OriginationApididRepositoryIdGetGET /did/repository/{id}
DnlApi.OriginationApididRepositoryIdPatchPATCH /did/repository/{id}
DnlApi.OriginationApididRepositoryListGetGET /did/repository/list
DnlApi.OriginationApididRepositoryMassAssignPatchPATCH /did/repository/mass_assign
DnlApi.OriginationApididRoutingListGetGET /did/routing/list
DnlApi.OriginationApididVendorAllDeleteDELETE /did/vendor/all
DnlApi.OriginationApididVendorAllPatchPATCH /did/vendor/all
DnlApi.OriginationApididVendorClientIdDeleteDELETE /did/vendor/{client_id}
DnlApi.OriginationApididVendorClientIdGetGET /did/vendor/{client_id}
DnlApi.OriginationApididVendorClientIdPatchPATCH /did/vendor/{client_id}
DnlApi.OriginationApididVendorClientIdUploadDidsPostPOST /did/vendor/{client_id}/upload_dids
DnlApi.OriginationApididVendorCreatePostPOST /did/vendor/create
DnlApi.OriginationApididVendorListGetGET /did/vendor/list
DnlApi.ProductApiproductCreatePostPOST /product/create
DnlApi.ProductApiproductIdDeleteDELETE /product/{id}
DnlApi.ProductApiproductIdGetGET /product/{id}
DnlApi.ProductApiproductIdPatchPATCH /product/{id}
DnlApi.ProductApiproductIdSendPatchPATCH /product/{id}/send
DnlApi.ProductApiproductListGetGET /product/list
DnlApi.ProductApiproductPublicGetGET /product/public
DnlApi.ReportsApireportCdrActiveGetGET /report/cdr_active
DnlApi.ReportsApireportSipActiveGetGET /report/sip_active
DnlApi.RouteApirouteAllDeleteDELETE /route/all
DnlApi.RouteApirouteBlockAllDeleteDELETE /route/block/all
DnlApi.RouteApirouteBlockListGetGET /route/block/list
DnlApi.RouteApirouteBlockPostPOST /route/block
DnlApi.RouteApirouteBlockResBlockIdDeleteDELETE /route/block/{res_block_id}
DnlApi.RouteApirouteBlockResBlockIdGetGET /route/block/{res_block_id}
DnlApi.RouteApirouteBlockResBlockIdPatchPATCH /route/block/{res_block_id}
DnlApi.RouteApirouteDigitMapAllDeleteDELETE /route/digit_map/all
DnlApi.RouteApirouteDigitMapItemAllDeleteDELETE /route/digit_map/item/all
DnlApi.RouteApirouteDigitMapItemRefIdDeleteDELETE /route/digit_map/item/{ref_id}
DnlApi.RouteApirouteDigitMapItemRefIdGetGET /route/digit_map/item/{ref_id}
DnlApi.RouteApirouteDigitMapItemRefIdPatchPATCH /route/digit_map/item/{ref_id}
DnlApi.RouteApirouteDigitMapListGetGET /route/digit_map/list
DnlApi.RouteApirouteDigitMapPostPOST /route/digit_map
DnlApi.RouteApirouteDigitMapTranslationIdDeleteDELETE /route/digit_map/{translation_id}
DnlApi.RouteApirouteDigitMapTranslationIdGetGET /route/digit_map/{translation_id}
DnlApi.RouteApirouteDigitMapTranslationIdItemListGetGET /route/digit_map/{translation_id}/item/list
DnlApi.RouteApirouteDigitMapTranslationIdItemPostPOST /route/digit_map/{translation_id}/item
DnlApi.RouteApirouteDigitMapTranslationIdPatchPATCH /route/digit_map/{translation_id}
DnlApi.RouteApirouteDynamicAllDeleteDELETE /route/dynamic/all
DnlApi.RouteApirouteDynamicDynamicRouteIdAddTrunkPostPOST /route/dynamic/{dynamic_route_id}/add_trunk
DnlApi.RouteApirouteDynamicDynamicRouteIdAddTrunksPostPOST /route/dynamic/{dynamic_route_id}/add_trunks
DnlApi.RouteApirouteDynamicDynamicRouteIdDeleteDELETE /route/dynamic/{dynamic_route_id}
DnlApi.RouteApirouteDynamicDynamicRouteIdGetGET /route/dynamic/{dynamic_route_id}
DnlApi.RouteApirouteDynamicDynamicRouteIdOverrideCreatePostPOST /route/dynamic/{dynamic_route_id}/override/create
DnlApi.RouteApirouteDynamicDynamicRouteIdOverrideListGetGET /route/dynamic/{dynamic_route_id}/override/list
DnlApi.RouteApirouteDynamicDynamicRouteIdPatchPATCH /route/dynamic/{dynamic_route_id}
DnlApi.RouteApirouteDynamicDynamicRouteIdPriCreatePostPOST /route/dynamic/{dynamic_route_id}/pri/create
DnlApi.RouteApirouteDynamicDynamicRouteIdPriListGetGET /route/dynamic/{dynamic_route_id}/pri/list
DnlApi.RouteApirouteDynamicDynamicRouteIdQosCreatePostPOST /route/dynamic/{dynamic_route_id}/qos/create
DnlApi.RouteApirouteDynamicDynamicRouteIdQosListGetGET /route/dynamic/{dynamic_route_id}/qos/list
DnlApi.RouteApirouteDynamicDynamicRouteIdRemoveTrunksPatchPATCH /route/dynamic/{dynamic_route_id}/remove_trunks
DnlApi.RouteApirouteDynamicListGetGET /route/dynamic/list
DnlApi.RouteApirouteDynamicOverrideIdDeleteDELETE /route/dynamic/override/{id}
DnlApi.RouteApirouteDynamicOverrideIdGetGET /route/dynamic/override/{id}
DnlApi.RouteApirouteDynamicOverrideIdPatchPATCH /route/dynamic/override/{id}
DnlApi.RouteApirouteDynamicPostPOST /route/dynamic
DnlApi.RouteApirouteDynamicPriIdDeleteDELETE /route/dynamic/pri/{id}
DnlApi.RouteApirouteDynamicPriIdGetGET /route/dynamic/pri/{id}
DnlApi.RouteApirouteDynamicPriIdPatchPATCH /route/dynamic/pri/{id}
DnlApi.RouteApirouteDynamicQosIdDeleteDELETE /route/dynamic/qos/{id}
DnlApi.RouteApirouteDynamicQosIdGetGET /route/dynamic/qos/{id}
DnlApi.RouteApirouteDynamicQosIdPatchPATCH /route/dynamic/qos/{id}
DnlApi.RouteApirouteListGetGET /route/list
DnlApi.RouteApiroutePlanAllDeleteDELETE /route/plan/all
DnlApi.RouteApiroutePlanListGetGET /route/plan/list
DnlApi.RouteApiroutePlanPostPOST /route/plan
DnlApi.RouteApiroutePlanRoutePlanIdAddRoutePostPOST /route/plan/{route_plan_id}/add_route
DnlApi.RouteApiroutePlanRoutePlanIdDeleteDELETE /route/plan/{route_plan_id}
DnlApi.RouteApiroutePlanRoutePlanIdGetGET /route/plan/{route_plan_id}
DnlApi.RouteApiroutePlanRoutePlanIdListRoutesGetGET /route/plan/{route_plan_id}/list_routes
DnlApi.RouteApiroutePlanRoutePlanIdPatchPATCH /route/plan/{route_plan_id}
DnlApi.RouteApirouteRouteIdDeleteDELETE /route/{route_id}
DnlApi.RouteApirouteRouteIdGetGET /route/{route_id}
DnlApi.RouteApirouteRouteIdPatchPATCH /route/{route_id}
DnlApi.RouteApirouteStaticAllDeleteDELETE /route/static/all
DnlApi.RouteApirouteStaticCreatePostPOST /route/static/create
DnlApi.RouteApirouteStaticItemAllDeleteDELETE /route/static/item/all
DnlApi.RouteApirouteStaticItemItemIdDeleteDELETE /route/static/item/{item_id}
DnlApi.RouteApirouteStaticItemItemIdGetGET /route/static/item/{item_id}
DnlApi.RouteApirouteStaticItemItemIdPatchPATCH /route/static/item/{item_id}
DnlApi.RouteApirouteStaticListGetGET /route/static/list
DnlApi.RouteApirouteStaticStaticRouteIdDeleteDELETE /route/static/{static_route_id}
DnlApi.RouteApirouteStaticStaticRouteIdGetGET /route/static/{static_route_id}
DnlApi.RouteApirouteStaticStaticRouteIdItemCreatePostPOST /route/static/{static_route_id}/item/create
DnlApi.RouteApirouteStaticStaticRouteIdItemListGetGET /route/static/{static_route_id}/item/list
DnlApi.RouteApirouteStaticStaticRouteIdPatchPATCH /route/static/{static_route_id}
DnlApi.SwitchApiswitchCapacityIdDeleteDELETE /switch/capacity/{id}
DnlApi.SwitchApiswitchCapacityIdGetGET /switch/capacity/{id}
DnlApi.SwitchApiswitchCapacityIdPatchPATCH /switch/capacity/{id}
DnlApi.SwitchApiswitchCapacityListGetGET /switch/capacity/list
DnlApi.SwitchApiswitchCodeAllDeleteDELETE /switch/code/all
DnlApi.SwitchApiswitchCodeCodeIdDeleteDELETE /switch/code/{code_id}
DnlApi.SwitchApiswitchCodeCodeIdGetGET /switch/code/{code_id}
DnlApi.SwitchApiswitchCodeCodeIdPatchPATCH /switch/code/{code_id}
DnlApi.SwitchApiswitchCodeCreatePostPOST /switch/code/create
DnlApi.SwitchApiswitchCodeDeckAllDeleteDELETE /switch/code_deck/all
DnlApi.SwitchApiswitchCodeDeckCodeDeckIdDeleteDELETE /switch/code_deck/{code_deck_id}
DnlApi.SwitchApiswitchCodeDeckCodeDeckIdGetGET /switch/code_deck/{code_deck_id}
DnlApi.SwitchApiswitchCodeDeckCodeDeckIdPatchPATCH /switch/code_deck/{code_deck_id}
DnlApi.SwitchApiswitchCodeDeckCreatePostPOST /switch/code_deck/create
DnlApi.SwitchApiswitchCodeDeckListGetGET /switch/code_deck/list
DnlApi.SwitchApiswitchCodeListGetGET /switch/c
1.2.62

6 years ago