APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
References the Subenrollment.Subscriber_ID value in the parent table.
References the Members.Member_Seq for this members enrollment.
References the Subenrollment.Group_ID value in the parent table.
References the Subenrollment.Division_ID value in the parent table.
References the Subenrollment.Group_Coverage_Start value in the parent table.
References the Subenrollment.Start_Date value in the parent table.
References the GroupContractPlan.Plan_ID value indicating which Plan this member is enrolling that is being offered.
The Member's 'Volume' within the selected plan on the enrollment. The Member Enrollment 'Volume' has no impact on invoicing.
The Member's 'Tier' within the selected plan on the enrollment. The Member Enrollment 'Tier' has no impact on adjudication or invoicing.
Indicates if this enrollment plan record should calculate the Dollar_Amount value through the Group leve Volume settings rather than use the value stored in Dollar_Amount. Note: The database will apply a default value of False for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of False to meet the API requirements and ensure that the functionality occurs as expected.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/groups/{groupID}/divisions/{divisionID}/enrollments
- 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}/groups/{groupID}/divisions/{divisionID}/enrollments' \
-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",
"division_ID": "string",
"group_Coverage_Start": "2019-08-24T14:15:22Z",
"sub_Start_Date": "2019-08-24T14:15:22Z",
"plan_ID": "string",
"plan_Start": "2019-08-24T14:15:22Z",
"dollar_Amount": 0.1,
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"ltC_Daily_Benefit_Amount": 0.1,
"ltC_Lifetime_Max_Amount": 0.1,
"ltC_Lifetime_Max_Days": 0,
"ltC_Lifetime_Max_Years": 0,
"ltC_Monthly_Benefit_Amount": 0.1,
"plan_End": "2019-08-24T14:15:22Z",
"tier": "st",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string",
"use_Volume_Scale": true,
"reason_ID": 0
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/groups/{groupID}/divisions/{divisionID}/enrollments
- 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}/groups/{groupID}/divisions/{divisionID}/enrollments?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}/groups/{groupID}/divisions/{divisionID}/enrollments/{groupCoverageStart}/{subStartDate}/plans/{planID}/{planStart}
- 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}/groups/{groupID}/divisions/{divisionID}/enrollments/{groupCoverageStart}/{subStartDate}/plans/{planID}/{planStart}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example