APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
References Members.Subscriber_ID value on the parent record.
References Members.Member_Seq value on the parent record.
References the Subenrollment.Group_ID value in the parent table.
References the GroupPlanYear.Plan_Year value in the parent table.
Benefit code associated with the Member Accumulator.
Selecting this option indicates that the Accumulator is an Added Accumulator.
Total Allowed amount. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Allowed amount that has been used In Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Allowed amount that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total amount of benefit that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
In network amount of benefit that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount of benefit that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount that has been billed. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount that has been billed In Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount that has been billed Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total Coordination of Benefits amount that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
In Network Coordination of Benefits amount that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Coordination of Benefits amount that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total amount of Coinsurance that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
In Network amount of Coinsurance that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount of Coinsurance that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total amount of Copay that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
In Network amount of Copay that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount of Copay that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount of deductible credit that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
In Network amount of deductible credit that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total amount of deductible credit that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
In Network amount of deductible that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total amount of deductible that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount of deductible that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total amount that is not covered. Note: This field is marked as NOT NULL in the database and therefore required by the API.
In Network amount that is not covered. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Out of Network amount that is not covered. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Total Out of Pocket amount that has been used. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount of Out of Pocket that has been used In Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Amount of Out of Pocket that has been used Out of Network. Note: This field is marked as NOT NULL in the database and therefore required by the API.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/accums
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/accums' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"subscriber_ID": "string",
"member_Seq": "st",
"group_ID": "string",
"plan_Year": "string",
"plan_Type": "string",
"benefit_Code": "string",
"added_Accum": "s",
"allowed_Amt": 0.1,
"allowed_Amt_Net": 0.1,
"allowed_Amt_OON": 0.1,
"benefit_Used": 0.1,
"benefit_Used_Net": 0.1,
"benefit_Used_OON": 0.1,
"billed_Amt": 0.1,
"billed_Amt_Net": 0.1,
"billed_Amt_OON": 0.1,
"coB_Amt": 0.1,
"coB_Amt_Net": 0.1,
"coB_Amt_OON": 0.1,
"coins_Amt": 0.1,
"coins_Amt_Net": 0.1,
"coins_Amt_OON": 0.1,
"copay_Amt": 0.1,
"copay_Amt_Net": 0.1,
"copay_Amt_OON": 0.1,
"ded_Credit_OON_Used": 0.1,
"ded_Credit_PPO_Used": 0.1,
"ded_Credit_Used": 0.1,
"ded_PPO_Used": 0.1,
"deductible_Used": 0.1,
"deductible_Used_OON": 0.1,
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"not_Covered_Amt": 0.1,
"not_Covered_Amt_Net": 0.1,
"not_Covered_Amt_OON": 0.1,
"out_Of_Pocket": 0.1,
"out_Of_Pocket_Net": 0.1,
"out_Of_Pocket_OON": 0.1,
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/accums
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/accums?page=1&pageSize=100&sortBy=string' \
-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/subscribers/{subscriberID}/members/{memberSeq}/accums/{groupID}/{planYear}/{planType}/{benefitCode}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/accums/{groupID}/{planYear}/{planType}/{benefitCode}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example