APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
ID assigned to the Call. 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.
Authorization number of the claim associated with the call.
Identifies the location where the call was received. 'Call Destinations' are configured within 'Call Tracking Configuration'.
Identifies the status of the call. 'Call Statuses' are configured within 'Call Tracking Configuration'.
Identifies the type of call. This usually identifies the subject or purpose of the call. 'Call Types' are configured within 'Call Tracking Configuration'.
Identifies the type of Caller. 'Caller Types' are configured within 'Call Tracking Configuration'.
Indicates that the associated Caller may be found within the 'Contacts Folder'.
Text area where the User may enter any relevant notes regarding the call.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/call-trackings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://vbapi.vbasoftware.com/vbasoftware/call-trackings \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"call_Key": 0,
"auth_Number": "string",
"call_Destination": "string",
"call_Length": 0,
"call_Start": "2019-08-24T14:15:22Z",
"call_Status": "string",
"call_Type": "string",
"caller_Type": "string",
"contacts_List": true,
"email_Address": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"extension": "string",
"fax_Number": "string",
"first_Name": "string",
"general_Notes": "string",
"last_Name": "string",
"organization": "string",
"phone_Country_Code": "string",
"phone_Number": "string",
"provider_ID": "string",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/call-trackings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/call-trackings?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/call-trackings/{callKey}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/call-trackings/{callKey}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example