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.
First Procedure Code for the specified range. This range allows the User to apply additional codes on top of the system-wide definition of codes for this benefit.
Indicates whether the specified range of codes is included or excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Last Procedure Code for the specified range. This range allows the User to apply additional codes on top of the system-wide definition of codes for this benefit.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/procedure-codes
- 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}/procedure-codes' \
-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",
"from_Procedure": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"exclude": true,
"override_From_Procedure": "string",
"override_Thru_Procedure": "string",
"thru_Procedure": "string",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/procedure-codes
- 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}/procedure-codes' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example- application/json
- text/json
- application/*+json
References the PlanBenefits.Plan_ID value in parent table.
References the PlanBenefits.Benefit_Code value in parent table.
First Procedure Code for the specified range. This range allows the User to apply additional codes on top of the system-wide definition of codes for this benefit.
Indicates whether the specified range of codes is included or excluded. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Last Procedure Code for the specified range. This range allows the User to apply additional codes on top of the system-wide definition of codes for this benefit.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/procedure-codes-batch
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://vbapi.vbasoftware.com/vbasoftware/plans/{planID}/benefits/{benefitCode}/procedure-codes-batch' \
-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",
"from_Procedure": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"exclude": true,
"override_From_Procedure": "string",
"override_Thru_Procedure": "string",
"thru_Procedure": "string",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}
]'No response example