APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Checking this box means that adjudication will not require a match on the procedure modifiers when automatically assigning this auth.
Required modifier for adjudication to match this authorization to a claim.
Required modifier for adjudication to match this authorization to a claim.
Required modifier for adjudication to match this authorization to a claim.
Required modifier for adjudication to match this authorization to a claim.
Allows the User to apply a procedure cluster to the procedure code line. This can be selected by right-clicking within the field and selecting 'Lookup' from the context menu.
Unique identifier assigned to the procedure that will be tied to the authorization. This can be selected by right-clicking within the field and selecting 'Lookup' from the context menu.
Total number of approved units of the associated procedure that have been used.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/auths/{authNumber}/procedure-codes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://vbapi.vbasoftware.com/vbasoftware/auths/{authNumber}/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 '{
"authProcCodes_Key": 0,
"auth_Number": "string",
"exclude_Modifier_Match": true,
"modifier1": "string",
"modifier2": "string",
"modifier3": "string",
"modifier4": "string",
"procedure_Cluster": "string",
"procedure_Code": "string",
"units_Actual": 0.1,
"units_Approved": 0.1,
"units_Requested": 0.1
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/auths/{authNumber}/procedure-codes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/auths/{authNumber}/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
Checking this box means that adjudication will not require a match on the procedure modifiers when automatically assigning this auth.
Required modifier for adjudication to match this authorization to a claim.
Required modifier for adjudication to match this authorization to a claim.
Required modifier for adjudication to match this authorization to a claim.
Required modifier for adjudication to match this authorization to a claim.
Allows the User to apply a procedure cluster to the procedure code line. This can be selected by right-clicking within the field and selecting 'Lookup' from the context menu.
Unique identifier assigned to the procedure that will be tied to the authorization. This can be selected by right-clicking within the field and selecting 'Lookup' from the context menu.
Total number of approved units of the associated procedure that have been used.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/auths/{authNumber}/procedure-codes-batch
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://vbapi.vbasoftware.com/vbasoftware/auths/{authNumber}/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 '[
{
"authProcCodes_Key": 0,
"auth_Number": "string",
"exclude_Modifier_Match": true,
"modifier1": "string",
"modifier2": "string",
"modifier3": "string",
"modifier4": "string",
"procedure_Cluster": "string",
"procedure_Code": "string",
"units_Actual": 0.1,
"units_Approved": 0.1,
"units_Requested": 0.1
}
]'No response example