APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
References the PlanBenefits.Plan_ID value in parent table.
References the PlanBenefits.Benefit_Code value in parent table.
Specifies the Dental Designation options including Tooth, Quadrant, and Arch.
Having effective and term dates for the maximums allows for changes throughout the life of the plan. The dates defined reference to the date of service of the claim to determine which maximum applies.
Having effective and term dates for the maximums allows for changes throughout the life of the plan. The dates defined reference to the date of service of the claim to determine which maximum applies.
The frequency defined here states how many of the Max Per apply for the Maximum line. This field has the logic of: Current minus Freq. A zero in this field will force the Maximum to calculate within the year, day, etc. defined in the Max Per. A 4 in this field will force the Maximum to calculate within 5 years, days, etc. defined in the Max Per.
Each maximum needs and Ex Code defined for explanation during adjudication and for Remittance and EOB's. A denial Ex Code can only be used Visit Maximums as payable type Maximums can have partially paid lines. A denial code on at claim detail line that should be partially paid will result in the entire line being denied and the Maximum not being fulfilled.
Used for dollar maximums. The Ex Code in field 11 would be an informational code which allows the amount over the max to roll to the next line and apply the Denial Ex Code.
Defines the timeframe that applies to the Maximum: Day - per service date. Month - per every 30 or 31 days. Calendar Month - per calendar month in which the services were rendered. Calendar Year - per calendar year in which the services were rendered. Plan Year - per plan year as defined for the Member. Lifetime - per lifetime. Occurrence - per occurrence date on the claim header. Birth Date Year - per year defined by the Member's date of birth. Visit - per service date per Provider.
Each Maximum needs to be sequenced in order for adjudication to determine which Maximum line should apply first.
Indicates the type of Maximum: Visits - per service date. Svc Count - per units on service line. Payable Amount - payable amounts from claims. Co-pay Amount - co-pay amounts from claims. Co-Ins Amount - co-ins amounts from claims. Deductible Amount - deductible amounts from claims. Occurrence Payable - payable amount per occurrence date. Occurrence - per occurrence date on the claim header. Svc Count_Payable - payable amount on the service line divided by the number of units on the claim. This will pay the amount per unit for the number of units that are allowed by the rule.
Indicates whether both In and/or Out of Network benefits apply.
Indicates whether the Maximum applies to the Family or each Member. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Defines the dollar or count quantity that should apply to the Maximum.
Checking this box indicates that this benefit maximum represents a maximum that must be paid out in full regardless of the billed amount on the claim or allowable. A new claim will be created to pay any difference to the Subscriber. Note: The database will apply a default value of False for this field if a value is not provided.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/maximums
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/maximums' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"plan_ID": "string",
"benefit_Code": "string",
"max_ID": "string",
"dental_Designation": "s",
"effective_Date": "2019-08-24T14:15:22Z",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"expire_Date": "2019-08-24T14:15:22Z",
"frequency": 0,
"max_Description": "string",
"max_Ex_Code": "string",
"max_Payable_Ex_Code": "string",
"max_Per": "s",
"max_Sequence": 0,
"max_Type": "s",
"max_Type_Net": "s",
"member_Family": "s",
"quantity": 0.1,
"subscriber_Reimbursement": true,
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string",
"visit_Criteria": 0,
"cross_Plan_Max": true
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/maximums
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/maximums' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/maximums/{maxID}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/maximums/{maxID}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example