APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Unique identifier for each Member Care Alert record. Note: This field is marked as NOT NULL in the database and therefore required by the API.
A description area used to provide more detail about the care alert.
Status of the care alert that will be sent to the Member based upon the alert criteria. The status can be set to either 'Due Soon', 'Past Due', or 'Completed'.
Identifies the frequency of the care alert by specifying the number of the associated frequency type that should be used.
Identifies the frequency at which the care alerts should be sent. This can be based upon a certain number of months, an annual basis, or a certain number of years.
Identifies the last date that the Member received the service associated with the care alert.
References Members.Member_Seq value on the parent record.
Idenfities the next date that the Member is to receive the service associated with the care alert.
References Members.Subscriber_ID value on the parent record.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/care-alerts
- 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}/care-alerts' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"memberCareAlert_Key": 0,
"alert_Details": "string",
"care_Alert_Status": "string",
"diagnostic_Code": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"frequency": 0,
"frequency_Type": "string",
"last_Service_Date": "2019-08-24T14:15:22Z",
"member_Seq": "st",
"next_Service_Date": "2019-08-24T14:15:22Z",
"procedure_Code": "string",
"subscriber_ID": "string",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/subscribers/{subscriberID}/members/{memberSeq}/care-alerts
- 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}/care-alerts?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}/care-alerts/{memberCareAlertKey}
- 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}/care-alerts/{memberCareAlertKey}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example