1.0.0 • Published 2 years ago

@vbasoftware/vbapi-vbasoftware-js v1.0.0

Weekly downloads
-
License
Unlicense
Repository
-
Last release
2 years ago

vba_software

VbaSoftware - JavaScript client for vba_software APIs for VBASoftware This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.0
  • Package version: 0.0.1

Installation

For Node.js

npm

Install via:

npm install vbapi-vbasoftware-js --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):

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

Request an API Key

VBASoftware APIs require a client API Key. You may request a key via your VBA account manager or by sending a request via email.

Implementing

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

var VbaSoftware = require('vbapi-vbasoftware-js');
var defaultClient = VbaSoftware.ApiClient.instance;

// Configure API key authorization: VBAPIKey
var VBAPIKey = defaultClient.authentications['VBAPIKey'];
VBAPIKey.apiKey = "YOUR API KEY"

var api = new VbaSoftware.AmountDetailsApi()
var vbapi_client_code = "vbapi_client_code_example"; 		// {String} Client code
var vbasoftware_database = "vbasoftware_database_example"; 	// {String} Target database
var clientId = "clientId_example"; 							// {String} Client ID
var key = "key_example"; 									// {String} Key

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getAmountDetails(vbapi_client_code, vbasoftware_database, clientId, key, callback);

Documentation for API Endpoints

All URIs are relative to https://vbapi-dev.vbasoftware.com/vbasoftware

ClassMethodHTTP requestDescription
VbaSoftware.AmountDetailsApigetAmountDetailsGET /clients/{clientId}/amount-details/{key}Get AmountDetails
VbaSoftware.AmountDetailsApilistAmountDetailsGET /clients/{clientId}/amount-detailsList AmountDetails
VbaSoftware.AuthApiauthAdjustmentPOST /clients/{clientId}/auths/{authNumber}/adjustAuth Adjustment
VbaSoftware.AuthApiauthProcessStatusPOST /clients/{clientId}/auths/{authNumber}/process-status/{newAuthCode}Process a change in Auth Status
VbaSoftware.AuthApicreateAuthPOST /clients/{clientId}/authsCreate Auth
VbaSoftware.AuthApicreateOrUpdateAuthBatchPUT /clients/{clientId}/authsCreate or Update Auth Batch
VbaSoftware.AuthApideleteAuthDELETE /clients/{clientId}/auths/{authNumber}Delete Auth
VbaSoftware.AuthApigetAuthGET /clients/{clientId}/auths/{authNumber}Get Auth
VbaSoftware.AuthApiupdateAuthPUT /clients/{clientId}/auths/{authNumber}Update Auth
VbaSoftware.AuthActionApilistAuthActionGET /clients/{clientId}/auth-actionsList AuthActions
VbaSoftware.AuthActionsApirecalculateAuthsPOST /clients/{clientId}/batches/{batchID}/claims/{claimID}/recalculate-authsRecalculates Authorizations
VbaSoftware.AuthCodeApicreateAuthCodePOST /clients/{clientId}/auth-codesCreate AuthCode
VbaSoftware.AuthCodeApideleteAuthCodeDELETE /clients/{clientId}/auth-codes/{authCode}Delete AuthCode
VbaSoftware.AuthCodeApigetAuthCodeGET /clients/{clientId}/auth-codes/{authCode}Get AuthCode
VbaSoftware.AuthCodeApiupdateAuthCodePUT /clients/{clientId}/auth-codes/{authCode}Update AuthCode
VbaSoftware.AuthCodeApiupdateBatchAuthCodePUT /clients/{clientId}/auth-codes-batchUpdate Batch AuthCode
VbaSoftware.AuthDiagnosticCodesApicreateAuthDiagCodePOST /clients/{clientId}/auths/{authNumber}/diagnostic-codesCreate Auth Diagnostic Code
VbaSoftware.AuthDiagnosticCodesApideleteAuthDiagCodeDELETE /clients/{clientId}/auths/{authNumber}/diagnostic-codes/{diagnosticCode}/diagnostic-code-types/{diagnosticCodeType}Delete Diagnostic Code
VbaSoftware.AuthDiagnosticCodesApigetAuthDiagCodeListGET /clients/{clientId}/auths/{authNumber}/diagnostic-codesList Diagnostic Codes for Auth
VbaSoftware.AuthDiagnosticCodesApigetDiagCodeGET /clients/{clientId}/auths/{authNumber}/diagnostic-codes/{diagnosticCode}/diagnostic-code-types/{diagnosticCodeType}Get Diagnostic Code
VbaSoftware.AuthDiagnosticCodesApigetDiagCodeListGET /clients/{clientId}/auths/{authNumber}/diagnostic-codes/{diagnosticCode}List Diagnostic Codes with Value
VbaSoftware.AuthDiagnosticCodesApiupdateAuthDiagCodePUT /clients/{clientId}/auths/{authNumber}/diagnostic-codes/{diagnosticCode}/diagnostic-code-types/{diagnosticCodeType}Update Diagnostic Code
VbaSoftware.AuthDiagnosticCodesApiupdateAuthDiagCodeBatchPUT /clients/{clientId}/auths/{authNumber}/diagnostic-codes-batchUpdate Diagnostic Code Batch
VbaSoftware.AuthProcedureCodesApicreateAuthProcCodePOST /clients/{clientId}/auths/{authNumber}/procedure-codesCreate Procedure Code
VbaSoftware.AuthProcedureCodesApicreateAuthProcCodeBatchPOST /clients/{clientId}/auths/{authNumber}/procedure-codes-batchCreate Procedure Code Batch
VbaSoftware.AuthProcedureCodesApideleteAuthProcCodeDELETE /clients/{clientId}/auths/{authNumber}/procedure-codes/{procedureCodeKey}Delete Procedure Code
VbaSoftware.AuthProcedureCodesApideleteAuthProcCodeBatchDELETE /clients/{clientId}/auths/{authNumber}/procedure-codes-batchDelete Procedure Code Batch
VbaSoftware.AuthProcedureCodesApigetAuthProcCodeGET /clients/{clientId}/auths/{authNumber}/procedure-codes/{procedureCodeKey}Get Procedure Code
VbaSoftware.AuthProcedureCodesApilistAuthProcCodeByAuthGET /clients/{clientId}/auths/{authNumber}/procedure-codesList Procedure Codes for Auth
VbaSoftware.AuthProcedureCodesApiupdateAuthProcCodePUT /clients/{clientId}/auths/{authNumber}/procedure-codes/{procedureCodeKey}Update Procedure Code
VbaSoftware.AuthReferenceApicreateAuthReferencePOST /clients/{clientId}/auths/{originalAuthNumber}/referencesCreate AuthReference
VbaSoftware.AuthReferenceApideleteAuthReferenceDELETE /clients/{clientId}/auths/{originalAuthNumber}/references/{referencedAuthNumber}Delete AuthReference
VbaSoftware.AuthReferenceApigetAuthReferenceGET /clients/{clientId}/auths/{originalAuthNumber}/references/{referencedAuthNumber}Get AuthReference
VbaSoftware.AuthReferenceApilistAuthReferenceForAuthGET /clients/{clientId}/auths/{originalAuthNumber}/referencesList AuthReferences
VbaSoftware.AuthReferenceApiupdateAuthReferencePUT /clients/{clientId}/auths/{originalAuthNumber}/references/{referencedAuthNumber}Update AuthReference
VbaSoftware.AuthReferenceApiupdateBatchAuthReferencePUT /clients/{clientId}/auths/{originalAuthNumber}/references-batchUpdate Batch AuthReference
VbaSoftware.AuthReviewApicreateAuthReviewPOST /clients/{clientId}/auth-reviewsCreate AuthReview
VbaSoftware.AuthReviewApideleteAuthReviewDELETE /clients/{clientId}/auth-reviews/{authReviewKey}Delete AuthReview
VbaSoftware.AuthReviewApigetAuthReviewGET /clients/{clientId}/auth-reviews/{authReviewKey}Get AuthReview
VbaSoftware.AuthReviewApilistAuthReviewsGET /clients/{clientId}/auth-reviewsList AuthReviews
VbaSoftware.AuthReviewApiupdateAuthReviewPUT /clients/{clientId}/auth-reviews/{authReviewKey}Update AuthReview
VbaSoftware.AuthReviewApiupdateBatchAuthReviewPUT /clients/{clientId}/auth-reviews-batchUpdate Batch AuthReview
VbaSoftware.AuthReviewLevelApicreateAuthReviewLevelPOST /clients/{clientId}/auth-review-levelsCreate AuthReviewLevel
VbaSoftware.AuthReviewLevelApideleteAuthReviewLevelDELETE /clients/{clientId}/auth-review-levels/{reviewLevel}Delete AuthReviewLevel
VbaSoftware.AuthReviewLevelApigetAuthReviewLevelGET /clients/{clientId}/auth-review-levels/{reviewLevel}Get AuthReviewLevel
VbaSoftware.AuthReviewLevelApilistAuthReviewLevelGET /clients/{clientId}/auth-review-levelsList AuthReviewLevel
VbaSoftware.AuthReviewLevelApiupdateAuthReviewLevelPUT /clients/{clientId}/auth-review-levels/{reviewLevel}Update AuthReviewLevel
VbaSoftware.AuthReviewLevelApiupdateBatchAuthReviewLevelPUT /clients/{clientId}/auth-review-levels-batchUpdate Batch AuthReviewLevel
VbaSoftware.AuthReviewSeverityApicreateAuthReviewSeverityPOST /clients/{clientId}/auth-review-severitiesCreate AuthReviewSeverity
VbaSoftware.AuthReviewSeverityApideleteAuthReviewSeverityDELETE /clients/{clientId}/auth-review-severities/{reviewSeverity}Delete AuthReviewSeverity
VbaSoftware.AuthReviewSeverityApigetAuthReviewSeverityGET /clients/{clientId}/auth-review-severities/{reviewSeverity}Get AuthReviewSeverity
VbaSoftware.AuthReviewSeverityApilistAuthReviewSeverityGET /clients/{clientId}/auth-review-severitiesList AuthReviewLevel
VbaSoftware.AuthReviewSeverityApiupdateAuthReviewSeverityPUT /clients/{clientId}/auth-review-severities/{reviewSeverity}Update AuthReviewSeverity
VbaSoftware.AuthReviewSeverityApiupdateBatchAuthReviewSeverityPUT /clients/{clientId}/auth-review-severities-batchUpdate Batch AuthReviewSeverity
VbaSoftware.AuthReviewStatusApicreateAuthReviewStatusPOST /clients/{clientId}/auth-review-statusesCreate AuthReviewStatus
VbaSoftware.AuthReviewStatusApideleteAuthReviewStatusDELETE /clients/{clientId}/auth-review-statuses/{reviewStatus}Delete AuthReviewStatus
VbaSoftware.AuthReviewStatusApigetAuthReviewStatusGET /clients/{clientId}/auth-review-statuses/{reviewStatus}Get AuthReviewStatus
VbaSoftware.AuthReviewStatusApilistAuthReviewStatusGET /clients/{clientId}/auth-review-statusesList AuthReviewStatus
VbaSoftware.AuthReviewStatusApiupdateAuthReviewStatusPUT /clients/{clientId}/auth-review-statuses/{reviewStatus}Update AuthReviewStatus
VbaSoftware.AuthReviewStatusApiupdateBatchAuthReviewStatusPUT /clients/{clientId}/auth-review-statuses-batchUpdate Batch AuthReviewStatus
VbaSoftware.AuthReviewTypeApicreateAuthReviewTypePOST /clients/{clientId}/auth-review-typesCreate AuthReviewType
VbaSoftware.AuthReviewTypeApideleteAuthReviewTypeDELETE /clients/{clientId}/auth-review-types/{reviewType}Delete AuthReviewType
VbaSoftware.AuthReviewTypeApigetAuthReviewTypeGET /clients/{clientId}/auth-review-types/{reviewType}Get AuthReviewType
VbaSoftware.AuthReviewTypeApilistAuthReviewTypeGET /clients/{clientId}/auth-review-typesList AuthReviewType
VbaSoftware.AuthReviewTypeApiupdateAuthReviewTypePUT /clients/{clientId}/auth-review-types/{reviewType}Update AuthReviewType
VbaSoftware.AuthReviewTypeApiupdateBatchAuthReviewTypePUT /clients/{clientId}/auth-review-types-batchUpdate Batch AuthReviewType
VbaSoftware.AuthReviewUrgencyTypeApicreateAuthReviewUrgencyTypePOST /clients/{clientId}/auth-review-urgency-typesCreate AuthReviewUrgencyType
VbaSoftware.AuthReviewUrgencyTypeApideleteAuthReviewUrgencyTypeDELETE /clients/{clientId}/auth-review-urgency-types/{reviewUrgencyType}Delete AuthReviewUrgencyType
VbaSoftware.AuthReviewUrgencyTypeApigetAuthReviewUrgencyTypeGET /clients/{clientId}/auth-review-urgency-types/{reviewUrgencyType}Get AuthReviewUrgencyType
VbaSoftware.AuthReviewUrgencyTypeApilistAuthReviewUrgencyTypeGET /clients/{clientId}/auth-review-urgency-typesList AuthReviewUrgencyType
VbaSoftware.AuthReviewUrgencyTypeApiupdateAuthReviewUrgencyTypePUT /clients/{clientId}/auth-review-urgency-types/{reviewUrgencyType}Update AuthReviewUrgencyType
VbaSoftware.AuthReviewUrgencyTypeApiupdateBatchAuthReviewUrgencyTypePUT /clients/{clientId}/auth-review-urgency-types-batchUpdate Batch AuthReviewUrgencyType
VbaSoftware.AuthTypePlacesApicreateAuthTypePlacePOST /clients/{clientId}/auth-types/{authType}/placesCreate AuthTypePlace
VbaSoftware.AuthTypePlacesApideleteAuthTypePlaceDELETE /clients/{clientId}/auth-types/{authType}/places/{placeOfService}Delete AuthTypePlace
VbaSoftware.AuthTypePlacesApigetAuthTypePlaceGET /clients/{clientId}/auth-types/{authType}/places/{placeOfService}Get AuthTypePlace
VbaSoftware.AuthTypePlacesApilistAuthTypePlaceGET /clients/{clientId}/auth-types/{authType}/placesList AuthTypePlace
VbaSoftware.AuthTypePlacesApiupdateAuthTypePlacePUT /clients/{clientId}/auth-types/{authType}/places/{placeOfService}Update AuthTypePlace
VbaSoftware.AuthTypePlacesApiupdateBatchAuthTypePlacePUT /clients/{clientId}/auth-types/{authType}/places-batchCreate or Update Batch AuthTypePlace
VbaSoftware.AuthTypesApicreateAuthTypePOST /clients/{clientId}/auth-typesCreate AuthType
VbaSoftware.AuthTypesApideleteAuthTypeDELETE /clients/{clientId}/auth-types/{authType}Delete AuthType
VbaSoftware.AuthTypesApigetAuthTypeGET /clients/{clientId}/auth-types/{authType}Get AuthType
VbaSoftware.AuthTypesApilistAuthTypeGET /clients/{clientId}/auth-typesList AuthType
VbaSoftware.AuthTypesApiupdateAuthTypePUT /clients/{clientId}/auth-types/{authType}Update AuthType
VbaSoftware.AuthTypesApiupdateBatchAuthTypePUT /clients/{clientId}/auth-types-batchCreate or Update Batch AuthType
VbaSoftware.BenefitCategoriesApicreateBenefitCategoryPOST /clients/{clientId}/benefit-categoriesCreate BenefitCategory
VbaSoftware.BenefitCategoriesApideleteBenefitCategoryDELETE /clients/{clientId}/benefit-categories/{benefitCategory}Delete BenefitCategory
VbaSoftware.BenefitCategoriesApigetBenefitCategoryGET /clients/{clientId}/benefit-categories/{benefitCategory}Get BenefitCategory
VbaSoftware.BenefitCategoriesApilistBenefitCategoryGET /clients/{clientId}/benefit-categoriesList BenefitCategory
VbaSoftware.BenefitCategoriesApiupdateBatchBenefitCategoryPUT /clients/{clientId}/benefit-categories-batchCreate or Update Batch BenefitCategory
VbaSoftware.BenefitCategoriesApiupdateBenefitCategoryPUT /clients/{clientId}/benefit-categories/{benefitCategory}Update BenefitCategory
VbaSoftware.BenefitDiagnosticCodesApicreateBenefitDiagCodesPOST /clients/{clientId}/benefits/{benefitCode}/diagnosesCreate BenefitDiagCodes
VbaSoftware.BenefitDiagnosticCodesApideleteBenefitDiagCodesDELETE /clients/{clientId}/benefits/{benefitCode}/diagnoses/{diagnosticCodeType}/{fromDiagCode}Delete BenefitDiagCodes
VbaSoftware.BenefitDiagnosticCodesApigetBenefitDiagCodesGET /clients/{clientId}/benefits/{benefitCode}/diagnoses/{diagnosticCodeType}/{fromDiagCode}Get BenefitDiagCodes
VbaSoftware.BenefitDiagnosticCodesApilistBenefitDiagCodesGET /clients/{clientId}/benefits/{benefitCode}/diagnosesList BenefitDiagCodes
VbaSoftware.BenefitDiagnosticCodesApiupdateBatchBenefitDiagCodesPUT /clients/{clientId}/benefits/{benefitCode}/diagnoses-batchCreate or Update Batch BenefitDiagCodes
VbaSoftware.BenefitDiagnosticCodesApiupdateBenefitDiagCodesPUT /clients/{clientId}/benefits/{benefitCode}/diagnoses/{diagnosticCodeType}/{fromDiagCode}Update BenefitDiagCodes
VbaSoftware.BenefitPlacesApicreateBenefitPlacePOST /clients/{clientId}/benefits/{benefitCode}/placesCreate BenefitPlace
VbaSoftware.BenefitPlacesApideleteBenefitPlaceDELETE /clients/{clientId}/benefits/{benefitCode}/places/{placeCode}Delete BenefitPlace
VbaSoftware.BenefitPlacesApigetBenefitPlaceGET /clients/{clientId}/benefits/{benefitCode}/places/{placeCode}Get BenefitPlace
VbaSoftware.BenefitPlacesApilistBenefitPlaceGET /clients/{clientId}/benefits/{benefitCode}/placesList BenefitPlace
VbaSoftware.BenefitPlacesApiupdateBatchBenefitPlacePUT /clients/{clientId}/benefits/{benefitCode}/places-batchCreate or Update Batch BenefitPlace
VbaSoftware.BenefitPlacesApiupdateBenefitPlacePUT /clients/{clientId}/benefits/{benefitCode}/places/{placeCode}Update BenefitPlace
VbaSoftware.BenefitProceduresApicreateBenefitProceduresPOST /clients/{clientId}/benefits/{benefitCode}/proceduresCreate BenefitProcedures
VbaSoftware.BenefitProceduresApideleteBenefitProceduresDELETE /clients/{clientId}/benefits/{benefitCode}/procedures/{fromProcedure}Delete BenefitProcedures
VbaSoftware.BenefitProceduresApigetBenefitProceduresGET /clients/{clientId}/benefits/{benefitCode}/procedures/{fromProcedure}Get BenefitProcedures
VbaSoftware.BenefitProceduresApilistBenefitProceduresGET /clients/{clientId}/benefits/{benefitCode}/proceduresList BenefitProcedures
VbaSoftware.BenefitProceduresApiupdateBatchBenefitProceduresPUT /clients/{clientId}/benefits/{benefitCode}/procedures-batchCreate or Update Batch BenefitProcedures
VbaSoftware.BenefitProceduresApiupdateBenefitProceduresPUT /clients/{clientId}/benefits/{benefitCode}/procedures/{fromProcedure}Update BenefitProcedures
VbaSoftware.BenefitProviderTypesApicreateBenefitProviderTypesPOST /clients/{clientId}/benefits/{benefitCode}/provider-typesCreate BenefitProviderTypes
VbaSoftware.BenefitProviderTypesApideleteBenefitProviderTypesDELETE /clients/{clientId}/benefits/{benefitCode}/provider-types/{providerType}Delete BenefitProviderTypes
VbaSoftware.BenefitProviderTypesApigetBenefitProviderTypesGET /clients/{clientId}/benefits/{benefitCode}/provider-types/{providerType}Get BenefitProviderTypes
VbaSoftware.BenefitProviderTypesApilistBenefitProviderTypesGET /clients/{clientId}/benefits/{benefitCode}/provider-typesList BenefitProviderTypes
VbaSoftware.BenefitProviderTypesApiupdateBatchBenefitProviderTypesPUT /clients/{clientId}/benefits/{benefitCode}/provider-types-batchCreate or Update Batch BenefitProviderTypes
VbaSoftware.BenefitProviderTypesApiupdateBenefitProviderTypesPUT /clients/{clientId}/benefits/{benefitCode}/provider-types/{providerType}Update BenefitProviderTypes
VbaSoftware.BenefitSpecialtiesApicreateBenefitSpecialtyPOST /clients/{clientId}/benefits/{benefitCode}/specialty-codesCreate BenefitSpecialty
VbaSoftware.BenefitSpecialtiesApideleteBenefitSpecialtyDELETE /clients/{clientId}/benefits/{benefitCode}/specialty-codes/{specialtyCode}Delete BenefitSpecialty
VbaSoftware.BenefitSpecialtiesApigetBenefitSpecialtyGET /clients/{clientId}/benefits/{benefitCode}/specialty-codes/{specialtyCode}Get BenefitSpecialty
VbaSoftware.BenefitSpecialtiesApilistBenefitSpecialtyGET /clients/{clientId}/benefits/{benefitCode}/specialty-codesList BenefitSpecialty
VbaSoftware.BenefitSpecialtiesApiupdateBatchBenefitSpecialtyPUT /clients/{clientId}/benefits/{benefitCode}/specialty-codes-batchCreate or Update Batch BenefitSpecialty
VbaSoftware.BenefitSpecialtiesApiupdateBenefitSpecialtyPUT /clients/{clientId}/benefits/{benefitCode}/specialty-codes/{specialtyCode}Update BenefitSpecialty
VbaSoftware.BenefitsApicreateBenefitPOST /clients/{clientId}/benefitsCreate Benefit
VbaSoftware.BenefitsApideleteBenefitCodesDELETE /clients/{clientId}/benefits/{benefitCode}Delete a Benefit
VbaSoftware.BenefitsApigetBenefitGET /clients/{clientId}/benefits/{benefitCode}Get a Benefit
VbaSoftware.BenefitsApilistBenefitLevelsGET /clients/{clientId}/benefit-levelsList Benefit Levels
VbaSoftware.BenefitsApilistBenefitPlanDentalDesignationTypesGET /clients/{clientId}/benefit-plan-dental-designation-typesList Benefit Plan Dental Designation Types
VbaSoftware.BenefitsApilistBenefitPlanMaximumCoverageTypesGET /clients/{clientId}/benefit-plan-maximum-coverage-typesList Benefit Plan Maximum Scope Types
VbaSoftware.BenefitsApilistBenefitPlanMaximumNetworkTypesGET /clients/{clientId}/benefit-plan-maximum-network-typesList Benefit Plan Maximum Network Types
VbaSoftware.BenefitsApilistBenefitPlanMaximumPerTypesGET /clients/{clientId}/benefit-plan-maximum-per-typesList Benefit Plan Maximum Per Types
VbaSoftware.BenefitsApilistBenefitPlanMaximumTypesGET /clients/{clientId}/benefit-plan-maximum-typesList Benefit Plan Maximum Types
VbaSoftware.BenefitsApilistBenefitRateMaxTypesGET /clients/{clientId}/benefit-rate-max-typesList Benefit Rate Max Types
VbaSoftware.BenefitsApilistBenefitRateTypesGET /clients/{clientId}/benefit-rate-typesList Benefit Rate Types
VbaSoftware.BenefitsApilistBenefitsGET /clients/{clientId}/benefitsList Benefits
VbaSoftware.BenefitsApilistPlanBenefitAmountTypesGET /clients/{clientId}/plan-benefit-amount-typesList Plan Benefit Amount Types
VbaSoftware.BenefitsApilistPlanBenefitCoPayPerTypesGET /clients/{clientId}/plan-benefit-co-pay-per-typesList Plan Benefit Co-Pay Per Types
VbaSoftware.BenefitsApiupdateBatchBenefitsPUT /clients/{clientId}/benefits-batchCreate or Update Batch of Benefits
VbaSoftware.BenefitsApiupdateBenefitPUT /clients/{clientId}/benefits/{benefitCode}Update Benefit
VbaSoftware.BillingCyclesApicreateBillingCyclePOST /clients/{clientId}/billing-cyclesCreate BillingCycle
VbaSoftware.BillingCyclesApideleteBillingCycleDELETE /clients/{clientId}/billing-cycles/{billingCycleID}Delete BillingCycle
VbaSoftware.BillingCyclesApigetBillingCycleGET /clients/{clientId}/billing-cycles/{billingCycleID}Get BillingCycle
VbaSoftware.BillingCyclesApilistBillingCycleGET /clients/{clientId}/billing-cyclesList BillingCycle
VbaSoftware.BillingCyclesApiupdateBatchBillingCyclePUT /clients/{clientId}/billing-cycles-batchCreate or Update Batch BillingCycle
VbaSoftware.BillingCyclesApiupdateBillingCyclePUT /clients/{clientId}/billing-cycles/{billingCycleID}Update BillingCycle
VbaSoftware.BrokerageApicreateBrokeragePOST /clients/{clientId}/brokeragesCreate Brokerage
VbaSoftware.BrokerageApideleteBrokerageDELETE /clients/{clientId}/brokerages/{brokerage}Delete Brokerage
VbaSoftware.BrokerageApigetBrokerageGET /clients/{clientId}/brokerages/{brokerage}Get Brokerage
VbaSoftware.BrokerageApilistBrokerageGET /clients/{clientId}/brokeragesList Brokerage
VbaSoftware.BrokerageApiupdateBatchBrokeragePUT /clients/{clientId}/brokerages-batchCreate or Update Batch Brokerage
VbaSoftware.BrokerageApiupdateBrokeragePUT /clients/{clientId}/brokerages/{brokerage}Update Brokerage
VbaSoftware.CLIACertificateApicreateCLIACertificatePOST /clients/{clientId}/clia-certificatesCreate CLIACertificate
VbaSoftware.CLIACertificateApideleteCLIACertificateDELETE /clients/{clientId}/clia-certificates/{certificateId}Delete CLIACertificate
VbaSoftware.CLIACertificateApigetCLIACertificateGET /clients/{clientId}/clia-certificates/{certificateId}Get CLIACertificate
VbaSoftware.CLIACertificateApilistCLIACertificatesGET /clients/{clientId}/clia-certificatesList CLIACertificate
VbaSoftware.CLIACertificateApiupdateBatchCLIACertificatePUT /clients/{clientId}/clia-certificates-batchCreate or Update Batch CLIACertificate
VbaSoftware.CLIACertificateApiupdateCLIACertificatePUT /clients/{clientId}/clia-certificates/{certificateId}Update CLIACertificate
VbaSoftware.CapitationCategoriesApicreateCapitationCategoryPOST /clients/{clientId}/capitation-categoriesCreate CapitationCategory
VbaSoftware.CapitationCategoriesApideleteCapitationCategoryDELETE /clients/{clientId}/capitation-categories/{capitationCategory}Delete CapitationCategory
VbaSoftware.CapitationCategoriesApigetCapitationCategoryGET /clients/{clientId}/capitation-categories/{capitationCategory}Get CapitationCategory
VbaSoftware.CapitationCategoriesApilistCapitationCategoryGET /clients/{clientId}/capitation-categoriesList CapitationCategory
VbaSoftware.CapitationCategoriesApiupdateBatchCapitationCategoryPUT /clients/{clientId}/capitation-categories-batchCreate or Update Batch CapitationCategory
VbaSoftware.CapitationCategoriesApiupdateCapitationCategoryPUT /clients/{clientId}/capitation-categories/{capitationCategory}Update CapitationCategory
VbaSoftware.CapitationCategoryTypesApicreateCapitationCategoryTypePOST /clients/{clientId}/capitation-categories/{capitationCategory}/capitation-types/{capitationType}Create CapitationCategoryType
VbaSoftware.CapitationCategoryTypesApideleteCapitationCategoryTypeDELETE /clients/{clientId}/capitation-categories/{capitationCategory}/capitation-types/{capitationType}Delete CapitationCategoryType
VbaSoftware.CapitationCategoryTypesApigetCapitationCategoryTypeGET /clients/{clientId}/capitation-categories/{capitationCategory}/capitation-types/{capitationType}Get CapitationCategoryType
VbaSoftware.CapitationCategoryTypesApilistCapitationCategoryTypeGET /clients/{clientId}/capitation-categories/{capitationCategory}/capitation-typesList CapitationCategoryType
VbaSoftware.CapitationTypesApicreateCapitationTypePOST /clients/{clientId}/capitation-typesCreate CapitationType
VbaSoftware.CapitationTypesApideleteCapitationTypeDELETE /clients/{clientId}/capitation-types/{capitationType}Delete CapitationType
VbaSoftware.CapitationTypesApigetCapitationTypeGET /clients/{clientId}/capitation-types/{capitationType}Get CapitationType
VbaSoftware.CapitationTypesApilistCapitationTypeGET /clients/{clientId}/capitation-typesList CapitationType
VbaSoftware.CapitationTypesApiupdateBatchCapitationTypePUT /clients/{clientId}/capitation-types-batchCreate or Update Batch CapitationType
VbaSoftware.CapitationTypesApiupdateCapitationTypePUT /clients/{clientId}/capitation-types/{capitationType}Update CapitationType
VbaSoftware.ClaimTypesApigetClaimTypeGET /clients/{clientId}/claim-types/{claimType}Get ClaimType
VbaSoftware.ClaimTypesApilistClaimTypeGET /clients/{clientId}/claim-typesList ClaimType
VbaSoftware.CommunicationMethodsApicreateCommunicationMethodPOST /clients/{clientId}/communication-methodsCreate CommunicationMethod
VbaSoftware.CommunicationMethodsApideleteCommunicationMethodDELETE /clients/{clientId}/communication-methods/{communicationMethod}Delete CommunicationMethod
VbaSoftware.CommunicationMethodsApigetCommunicationMethodGET /clients/{clientId}/communication-methods/{communicationMethod}Get CommunicationMethod
VbaSoftware.CommunicationMethodsApilistCommunicationMethodGET /clients/{clientId}/communication-methodsList CommunicationMethod
VbaSoftware.CommunicationMethodsApiupdateBatchCommunicationMethodPUT /clients/{clientId}/communication-methods-batchCreate or Update Batch CommunicationMethod
VbaSoftware.CommunicationMethodsApiupdateCommunicationMethodPUT /clients/{clientId}/communication-methods/{communicationMethod}Update CommunicationMethod
VbaSoftware.CompanyDataApigetCompanyDataGET /clients/{clientId}/company-data/{keyValue}Get CompanyData
VbaSoftware.CompanyDataApilistCompanyDataGET /clients/{clientId}/company-dataList CompanyData
VbaSoftware.CompanyDataApiupdateCompanyDataPUT /clients/{clientId}/company-data/{keyValue}Update CompanyData
VbaSoftware.Context4OptionsApicreateCostContainContext4OptionPOST /clients/{clientId}/context4-optionsCreate CostContainContext4Option
VbaSoftware.Context4OptionsApideleteCostContainContext4OptionDELETE /clients/{clientId}/context4-options/{optionKey}Delete CostContainContext4Option
VbaSoftware.Context4OptionsApigetCostContainContext4OptionGET /clients/{clientId}/context4-options/{optionKey}Get CostContainContext4Option
VbaSoftware.Context4OptionsApilistCostContainContext4OptionGET /clients/{clientId}/context4-optionsList CostContainContext4Option
VbaSoftware.Context4OptionsApiupdateBatchCostContainContext4OptionPUT /clients/{clientId}/context4-options-batchCreate or Update Batch CostContainContext4Option
VbaSoftware.Context4OptionsApiupdateCostContainContext4OptionPUT /clients/{clientId}/context4-options/{optionKey}Update CostContainContext4Option
VbaSoftware.Context4OptionsPricingApicreateCostContainContext4OptionPricingPOST /clients/{clientId}/context4-option-pricingCreate CostContainContext4OptionPricing
VbaSoftware.Context4OptionsPricingApideleteCostContainContext4OptionPricingDELETE /clients/{clientId}/context4-option-pricing/{optionKey}Delete CostContainContext4OptionPricing
VbaSoftware.Context4OptionsPricingApigetCostContainContext4OptionPricingGET /clients/{clientId}/context4-option-pricing/{optionKey}Get CostContainContext4OptionPricing
VbaSoftware.Context4OptionsPricingApilistCostContainContext4OptionPricingGET /clients/{clientId}/context4-option-pricingList CostContainContext4OptionPricing
VbaSoftware.Context4OptionsPricingApiupdateBatchCostContainContext4OptionPricingPUT /clients/{clientId}/context4-option-pricing-batchCreate or Update Batch CostContainContext4OptionPricing
VbaSoftware.Context4OptionsPricingApiupdateCostContainContext4OptionPricingPUT /clients/{clientId}/context4-option-pricing/{optionKey}Update CostContainContext4OptionPricing
VbaSoftware.CountryApicreateCountryPOST /clients/{clientId}/countriesCreate Country
VbaSoftware.CountryApideleteCountryDELETE /clients/{clientId}/countries/{countryID}Delete Country
VbaSoftware.CountryApigetCountryGET /clients/{clientId}/countries/{countryID}Get Country
VbaSoftware.CountryApilistCountriesGET /clients/{clientId}/countriesList Countries
VbaSoftware.CountryApiupdateBatchCountryPUT /clients/{clientId}/countries-batchCreate or Update Batch Country
VbaSoftware.CountryApiupdateCountryPUT /clients/{clientId}/countries/{countryID}Update Country
VbaSoftware.CountyApicreateCountyPOST /clients/{clientId}/countiesCreate County
VbaSoftware.CountyApideleteCountyDELETE /clients/{clientId}/counties/{countyCode}Delete County
VbaSoftware.CountyApigetCountyGET /clients/{clientId}/counties/{countyCode}Get County
VbaSoftware.CountyApilistCountiesGET /clients/{clientId}/countiesList Counties
VbaSoftware.CountyApiupdateBatchCountyPUT /clients/{clientId}/counties-batchCreate or Update Batch County
VbaSoftware.CountyApiupdateCountyPUT /clients/{clientId}/counties/{countyCode}Update County
VbaSoftware.CoverageTypesApicreateCoverageTypePOST /clients/{clientId}/coverage-typesCreate CoverageType
VbaSoftware.CoverageTypesApideleteCoverageTypeDELETE /clients/{clientId}/coverage-types/{coverageType}Delete CoverageType
VbaSoftware.CoverageTypesApigetCoverageTypeGET /clients/{clientId}/coverage-types/{coverageType}Get CoverageType
VbaSoftware.CoverageTypesApilistCoverageTypeGET /clients/{clientId}/coverage-typesList CoverageType
VbaSoftware.CoverageTypesApiupdateBatchCoverageTypePUT /clients/{clientId}/coverage-types-batchCreate or Update Batch CoverageType
VbaSoftware.CoverageTypesApiupdateCoverageTypePUT /clients/{clientId}/coverage-types/{coverageType}Update CoverageType
VbaSoftware.CriteriaApicreateCriteriaPOST /clients/{clientId}/criteriasCreate a search Criteria
VbaSoftware.CriteriaApicreateOrUpdateBatchCriteriaPUT /clients/{clientId}/criterias-batchCreate or Update Batch Criteria
VbaSoftware.CriteriaApideleteCriteriaDELETE /clients/{clientId}/criterias/{criteriaKey}Delete Criteria
VbaSoftware.CriteriaApigetCriteriaGET /clients/{clientId}/criterias/{criteriaKey}Get Criteria
VbaSoftware.CriteriaApilistCriteriaGET /clients/{clientId}/criteriasList Criteria
VbaSoftware.CriteriaApiupdateCriteriaPUT /clients/{clientId}/criterias/{criteriaKey}Update Criteria
VbaSoftware.CriteriaColumnsApigetCriteriaColumnGET /clients/{clientId}/criteria-columns/{id}Get Criteria Column
VbaSoftware.CriteriaColumnsApilistCriteriaColumnsGET /clients/{clientId}/criteria-columnsList Criteria Columns
VbaSoftware.CurrencyApicreateCurrencyPOST /clients/{clientId}/currenciesCreate Currency
VbaSoftware.CurrencyApideleteCurrencyDELETE /clients/{clientId}/currencies/{currencyID}Delete Currency
VbaSoftware.CurrencyApigetCurrencyGET /clients/{clientId}/currencies/{currencyID}Get Currency
VbaSoftware.CurrencyApilistCurrencyGET /clients/{clientId}/currenciesList Currency
VbaSoftware.CurrencyApiupdateBatchCurrencyPUT /clients/{clientId}/currencies-batchCreate or Update Batch Currency
VbaSoftware.CurrencyApiupdateCurrencyPUT /clients/{clientId}/currencies/{currencyID}Update Currency
VbaSoftware.DRGClusterApicreateDRGClusterPOST /clients/{clientId}/drg-clustersCreate DRGCluster
VbaSoftware.DRGClusterApideleteDRGClusterDELETE /clients/{clientId}/drg-clusters/{drgCluster}Delete DRGCluster
VbaSoftware.DRGClusterApigetDRGClusterGET /clients/{clientId}/drg-clusters/{drgCluster}Get DRGCluster
VbaSoftware.DRGClusterApilistDRGClusterGET /clients/{clientId}/drg-clustersList DRGCluster
VbaSoftware.DRGClusterApiupdateBatchDRGClusterPUT /clients/{clientId}/drg-clusters-batchUpdate Batch DRGCluster
VbaSoftware.DRGClusterApiupdateDRGClusterPUT /clients/{clientId}/drg-clusters/{drgCluster}Update DRGCluster
VbaSoftware.DRGClusterDetailApicreateDRGClusterDetailPOST /clients/{clientId}/drg-cluster-detailsCreate DRGClusterDetail
VbaSoftware.DRGClusterDetailApideleteDRGClusterDetailDELETE /clients/{clientId}/drg-cluster-details/{dRGClusterDetailKey}Delete DRGClusterDetail
VbaSoftware.DRGClusterDetailApigetDRGClusterDetailGET /clients/{clientId}/drg-cluster-details/{dRGClusterDetailKey}Get DRGClusterDetail
VbaSoftware.DRGClusterDetailApiupdateBatchDRGClusterDetailPUT /clients/{clientId}/drg-cluster-details-batchUpdate Batch DRGClusterDetail
VbaSoftware.DRGClusterDetailApiupdateDRGClusterDetailPUT /clients/{clientId}/drg-cluster-details/{dRGClusterDetailKey}Update DRGClusterDetail
VbaSoftware.DRGCodesApicreateDRGCodesPOST /clients/{clientId}/drg-codesCreate DRGCodes
VbaSoftware.DRGCodesApideleteDRGCodesDELETE /clients/{clientId}/drg-codes/{dRGCode}Delete DRGCodes
VbaSoftware.DRGCodesApigetDRGCodesGET /clients/{clientId}/drg-codes/{dRGCode}Get DRGCodes
VbaSoftware.DRGCodesApiupdateBatchDRGCodesPUT /clients/{clientId}/drg-codes-batchCreate or Update Batch DRGCodes
VbaSoftware.DRGCodesApiupdateDRGCodesPUT /clients/{clientId}/drg-codes/{dRGCode}Update DRGCodes
VbaSoftware.DRGScheduleApicreateDRGSchedulePOST /clients/{clientId}/drg-schedulesCreate DRGSchedule
VbaSoftware.DRGScheduleApideleteDRGScheduleDELETE /clients/{clientId}/drg-schedules/{drgSchedule}Delete DRGSchedule
VbaSoftware.DRGScheduleApigetDRGScheduleGET /clients/{clientId}/drg-schedules/{drgSchedule}Get DRGSchedule
VbaSoftware.DRGScheduleApilistDRGScheduleGET /clients/{clientId}/drg-schedulesList DRGSchedule
VbaSoftware.DRGScheduleApiupdateBatchDRGSchedulePUT /clients/{clientId}/drg-schedules-batchCreate or Update Batch DRGSchedule
VbaSoftware.DRGScheduleApiupdateDRGSchedulePUT /clients/{clientId}/drg-schedules/{drgSchedule}Update DRGSchedule
VbaSoftware.DRGWeightApicreateDRGWeightPOST /clients/{clientId}/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weightsCreate DRGWeight
VbaSoftware.DRGWeightApideleteDRGWeightDELETE /clients/{clientId}/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights/{effectiveDate}Delete DRGWeight
VbaSoftware.DRGWeightApigetDRGWeightGET /clients/{clientId}/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights/{effectiveDate}Get DRGWeight
VbaSoftware.DRGWeightApiupdateBatchDRGWeightPUT /clients/{clientId}/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights-batchCreate or Update Batch DRGWeight
VbaSoftware.DRGWeightApiupdateDRGWeightPUT /clients/{clientId}/drg-schedules/{drgSchedule}/drg-codes/{drgCode}/drg-weights/{effectiveDate}Update DRGWeight
VbaSoftware.DiagnosticCodeGroupsApicreateDiagnosticCodeGroupPOST /clients/{clientId}/diagnostic-code-groupsCreate DiagnosticCodeGroup
VbaSoftware.DiagnosticCodeGroupsApideleteDiagnosticCodeGroupDELETE /clients/{clientId}/diagnostic-code-groups/{diagnosticGroup}Delete DiagnosticCodeGroup
VbaSoftware.DiagnosticCodeGroupsApigetDiagnosticCodeGroupGET /clients/{clientId}/diagnostic-code-groups/{diagnosticGroup}Get DiagnosticCodeGroup
VbaSoftware.DiagnosticCodeGroupsApilistDiagnosticCodeGroupGET /clients/{clientId}/diagnostic-code-groupsList DiagnosticCodeGroup
VbaSoftware.DiagnosticCodeGroupsApiupdateBatchDiagnosticCodeGroupPUT /clients/{clientId}/diagnostic-code-groups-batchCreate or Update Batch DiagnosticCodeGroup
VbaSoftware.DiagnosticCodeGroupsApiupdateDiagnosticCodeGroupPUT /clients/{clientId}/diagnostic-code-groups/{diagnosticGroup}Update DiagnosticCodeGroup
VbaSoftware.DiagnosticCodeTypesApicreateDiagnosticCodeTypePOST /clients/{clientId}/diagnostic-code-typesCreate DiagnosticCodeType
VbaSoftware.DiagnosticCodeTypesApideleteDiagnosticCodeTypeDELETE /clients/{clientId}/diagnostic-code-types/{diagnosticCodeType}Delete DiagnosticCodeType
VbaSoftware.DiagnosticCodeTypesApigetDiagnosticCodeTypeGET /clients/{clientId}/diagnostic-code-types/{diagnosticCodeType}Get DiagnosticCodeType
VbaSoftware.DiagnosticCodeTypesApilistDiagnosticCodeTypeGET /clients/{clientId}/diagnostic-code-typesList DiagnosticCodeType
VbaSoftware.DiagnosticCodeTypesApiupdateBatchDiagnosticCodeTypePUT /clients/{clientId}/diagnostic-code-types-batchCreate or Update Batch DiagnosticCodeType
VbaSoftware.DiagnosticCodeTypesApiupdateDiagnosticCodeTypePUT /clients/{clientId}/diagnostic-code-types/{diagnosticCodeType}Update DiagnosticCodeType
VbaSoftware.DiagnosticCodesApigetDiagnosticCodeGET /clients/{clientId}/diagnostic-code-types/{diagnosticCodeType}/diagnostic-codes/{diagnosticCode}/effective-dates/{effectiveDate}Get DiagnosticCode
VbaSoftware.DiagnosticCodesApilistDiagnosticCodeGET /clients/{clientId}/diagnostic-code-types/{diagnosticCodeType}/diagnostic-codesList DiagnosticCodeS
VbaSoftware.EligibilityStatusApicreateEligibilityStatusPOST /clients/{clientId}/eligibility-statusesCreate EligibilityStatus
VbaSoftware.EligibilityStatusApideleteEligibilityStatusDELETE /clients/{clientId}/eligibility-statuses/{eligibilityStatus}Delete EligibilityStatus
VbaSoftware.EligibilityStatusApigetEligibilityStatusGET /clients/{clientId}/eligibility-statuses/{eligibilityStatus}Get EligibilityStatus
VbaSoftware.EligibilityStatusApilistEligibilityStatusGET /clients/{clientId}/eligibility-statusesList EligibilityStatus
VbaSoftware.EligibilityStatusApiupdateBatchEligibilityStatusPUT /clients/{clientId}/eligibility-statuses-batchCreate or Update Batch EligibilityStatus
VbaSoftware.EligibilityStatusApiupdateEligibilityStatusPUT /clients/{clientId}/eligibility-statuses/{eligibilityStatus}Update EligibilityStatus
VbaSoftware.EnrollmentAccumulatorsApirecalculateMemberTeethPOST /clients/{clientId}/subscribers/{subscriberID}/members/{memberSeq}/recalculate-teethRecalculate Member Teeth
VbaSoftware.EnrollmentAccumulatorsApisubscriberRecalcAccumPOST /clients/{clientId}/subscribers/{subscriberID}/recalculate-accumulatorsRecalculate Subscriber Accumulators
VbaSoftware.EthnicityCodesApicreateEthnicityCodePOST /clients/{clientId}/ethnicity-codesCreate EthnicityCode
VbaSoftware.EthnicityCodesApideleteEthnicityCodeDELETE /clients/{clientId}/ethnicity-codes/{ethnicityCode}Delete EthnicityCode
VbaSoftware.EthnicityCodesApigetEthnicityCodeGET /clients/{clientId}/ethnicity-codes/{ethnicityCode}Get EthnicityCode
VbaSoftware.EthnicityCodesApilistEthnicityCodeGET /clients/{clientId}/ethnicity-codesList EthnicityCode
VbaSoftware.EthnicityCodesApiupdateBatchEthnicityCodePUT /clients/{clientId}/ethnicity-codes-batchCreate or Update Batch EthnicityCode
VbaSoftware.EthnicityCodesApiupdateEthnicityCodePUT /clients/{clientId}/ethnicity-codes/{ethnicityCode}Update EthnicityCode
VbaSoftware.EventArgsApicreateEventArgPOST /clients/{clientId}/events/{eventID}/argsCreate EventArg
VbaSoftware.EventArgsApideleteEventArgDELETE /clients/{clientId}/events/{eventID}/args/{argumentName}Delete EventArg
VbaSoftware.EventArgsApigetEventArgGET /clients/{clientId}/events/{eventID}/args/{argumentName}Get EventArg
VbaSoftware.EventArgsApilistEventArgGET /clients/{clientId}/events/{eventID}/argsList EventArg
VbaSoftware.EventArgsApiupdateBatchEventArgPUT /clients/{clientId}/events/{eventID}/args-batchCreate or Update Batch EventArg
VbaSoftware.EventArgsApiupdateEventArgPUT /clients/{clientId}/events/{eventID}/args/{argumentName}Update EventArg
VbaSoftware.EventSchedulesApicreateEventSchedulePOST /clients/{clientId}/events/{eventID}/schedulesCreate EventSchedule
VbaSoftware.EventSchedulesApideleteEventScheduleDELETE /clients/{clientId}/events/{eventID}/schedules/{scheduleID}Delete EventSchedule
VbaSoftware.EventSchedulesApigetEventScheduleGET /clients/{clientId}/events/{eventID}/schedules/{scheduleID}Get EventSchedule
VbaSoftware.EventSchedulesApilistEventScheduleGET /clients/{clientId}/events/{eventID}/schedulesList EventSchedule
VbaSoftware.EventSchedulesApiupdateBatchEventSchedulePUT /clients/{clientId}/events/{eventID}/schedules-batchCreate or Update Batch EventSchedule
VbaSoftware.EventSchedulesApiupdateEventSchedulePUT /clients/{clientId}/events/{eventID}/schedules/{scheduleID}Update EventSchedule
VbaSoftware.EventsApicreateEventPOST /clients/{clientId}/eventsCreate Event
VbaSoftware.EventsApideleteEventDELETE /clients/{clientId}/events/{eventID}Delete Event
VbaSoftware.EventsApigetActiveEventsByUserGET /clients/{clientId}/users/{userId}/eventsList Active User Events
VbaSoftware.EventsApigetEventGET /clients/{clientId}/events/{eventID}Get Event
VbaSoftware.EventsApilistDaysOfWeekGET /clients/{clientId}/days-of-weekList Days Of Week
VbaSoftware.EventsApilistDurationsGET /clients/{clientId}/durationsList Durations
VbaSoftware.EventsApilistEventGET /clients/{clientId}/eventsList Event
VbaSoftware.EventsApilistEventActionsGET /clients/{clientId}/event-actionsList Event Actions
VbaSoftware.EventsApilistMonthsOfYearGET /clients/{clientId}/months-of-yearList Months Of Year
VbaSoftware.EventsApilistPrioritiesGET /clients/{clientId}/prioritiesList Priorities
VbaSoftware.EventsApilistScheduleActionsGET /clients/{clientId}/schedule-actionsList Schedule Actions
VbaSoftware.EventsApilistScheduleIntervalEndOptionsGET /clients/{clientId}/schedule-interval-end-optionsList Schedule Interval End Options
VbaSoftware.EventsApilistScheduleIntervalOptionsGET /clients/{clientId}/schedule-interval-optionsList Schedule Interval Options
VbaSoftware.EventsApilistScheduleIntervalsGET /clients/{clientId}/schedule-intervalsList Schedule Intervals
VbaSoftware.EventsApilistSnoozesGET /clients/{clientId}/snoozesList Snoozes
VbaSoftware.EventsApinextScheduledDatePOST /clients/{clientId}/events/{eventID}/schedules/{scheduleId}/nextNext Scheduled Date
VbaSoftware.EventsApirescheduleEventPOST /clients/{clientId}/events/{eventID}/rescheduleReschedule Event
VbaSoftware.EventsApisnoozeEventPOST /clients/{clientId}/events/{eventID}/snoozeSnooze an Event
VbaSoftware.EventsApiupdateBatchEventPUT /clients/{clientId}/events-batchCreate or Update Batch Event
VbaSoftware.EventsApiupdateEventPUT /clients/{clientId}/events/{eventID}Update Event
VbaSoftware.ExplanationCodesApicreateExplanationCodesPOST /clients/{clientId}/ex-codesCreate ExplanationCodes
VbaSoftware.ExplanationCodesApideleteExplanationCodesDELETE /clients/{clientId}/ex-codes/{exCode}Delete ExplanationCodes
VbaSoftware.ExplanationCodesApigetExplanationCodesGET /clients/{clientId}/ex-codes/{exCode}Get ExplanationCodes
VbaSoftware.ExplanationCodesApilistExplanationCodesGET /clients/{clientId}/ex-codesList ExplanationCodes
VbaSoftware.ExplanationCodesApiupdateBatchExplanationCodesPUT /clients/{clientId}/ex-codes-batchCreate or Update Batch ExplanationCodes
VbaSoftware.ExplanationCodesApiupdateExplanationCodesPUT /clients/{clientId}/ex-codes/{exCode}Update ExplanationCodes
VbaSoftware.ExternalIDApicreateExternalIDPOST /clients/{clientId}/external-idsCreate ExternalID
VbaSoftware.ExternalIDApideleteExternalIDDELETE /clients/{clientId}/external-ids/{externalId}Delete ExternalID
VbaSoftware.ExternalIDApigetExternalIDGET /clients/{clientId}/external-ids/{externalId}Get ExternalID
VbaSoftware.ExternalIDApilistExternalIDGET /clients/{clientId}/external-idsList ExternalID
VbaSoftware.ExternalIDApiupdateBatchExternalIDPUT /clients/{clientId}/external-ids-batchCreate or Update Batch ExternalID
VbaSoftware.ExternalIDApiupdateExternalIDPUT /clients/{clientId}/external-ids/{externalId}Update ExternalID
VbaSoftware.FeeSchedulesApicreateFeeSchedPOST /clients/{clientId}/fee-schedulesCreate FeeSched
VbaSoftware.FeeSchedulesApideleteFeeSchedDELETE /clients/{clientId}/fee-schedules/{feeSched}Delete FeeSched
VbaSoftware.FeeSchedulesApigetFeeSchedGET /clients/{clientId}/fee-schedules/{feeSc
1.0.0

2 years ago