APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Unique identifier assigned to the modifier discount. Note: The database will apply a default value of 0 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 0 to meet the API requirements and ensure that the functionality occurs as expected.
Percentage that the service line will be adjusted after it has been priced by the ‘Fee Schedule’.
Sequential identifier that determines the order of adjudication for each rule. (Seq. 01 will be applied first and so forth.) Note: The database will apply a default value of 0 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 0 to meet the API requirements and ensure that the functionality occurs as expected.
Date when the discount will begin/began applying to claims. This date will be compared to the date of service on the claim.
Identifies modifier codes that should receive the selected discount percentage.
Identifies modifier codes that should receive the selected discount percentage.
Identifies modifier codes that should receive the selected discount percentage.
Identifies modifier codes that should receive the selected discount percentage.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/fee-schedule-modifier-discounts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://vbapi.vbasoftware.com/vbasoftware/fee-schedule-modifier-discounts \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"feeSchedModifierDiscount_Key": 0,
"discount_Pct": 0.1,
"discount_Seq": 0,
"effective_Date": "2019-08-24T14:15:22Z",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"fee_Sched": "string",
"modifier1": "string",
"modifier2": "string",
"modifier3": "string",
"modifier4": "string",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/fee-schedule-modifier-discounts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/fee-schedule-modifier-discounts?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/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/fee-schedule-modifier-discounts/{feeSchedModifierDiscountKey}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example