• Partners
  • Email Us
  • Product
    • Channels
      • Voice
      • Email
      • SMS
      • Chat
      • Messenger
      • WhatsApp
      • Omnichannel
    • Features
      • Predictive Dialer
      • VCC Live Pay
      • Outbound IVR
      • Inbound IVR
      • Voicemail Detection
      • Live Dashboards
      • ACD
      • Salesforce Integration
      • Dialogflow
  • Solutions
    • Customer Service
    • Sales Teams
    • Debt Collection
    • Virtual Call Center
  • Pricing
  • Resources
    • Blog
    • Case Studies
    • Ebooks
    • Courses
    • Webinars
    • Information Security
    • Learning Center
    • Developers
  • Company
    • About us
    • Careers
    • News
    • Partners
  • Partners
  • Email Us
+44 208 638 0169
GET STARTED
TutorialsSecurityDatabase API — Leverage VCC Live from Any ERP and CRM Systems
  • Overview
    • Introduction
    • Legal Information
  • The Most Common Use Cases
    • Outbound Email Customization
    • IVR Settings - Use Cases
    • Outbound Calls - PPD
    • Incoming Calls - Setting up an IVR
    • The Main Agent KPIs
    • The Workflow of the Agent
    • Editing Scripts
    • Email Handling
    • Softphone Integration
    • Customize your Dashboard
    • Explore User-based Statistics
    • Create Custom KPIs
  • Getting Started
    • About This Chapter
    • First Steps
    • Creating a Simple Project
    • Creating a Simple Database
    • Setting up Users
    • The Basics of Inbound Projects
    • The Basics of Outbound Projects
    • The Basics of Measurement Tools
    • Introduction to Dispositions
    • The Basics of Call Recording Management
    • Getting Started with VCC Live Chat
    • Get to Know the Agent Workspace
    • Dynamic Email Contents
  • Communication Channels
    • About This chapter
    • Outbound Projects
      • Manual Dialer
      • Power and Predictive Dialing Modes
      • Outbound IVR
      • Robinson List
      • Outbound-Related Statistics
      • Measuring CSAT
    • Emails and Ticketing
      • Disposition-Triggered Emails
      • Dynamic Email Contents
      • Email Attachments - Basic, Dynamic and Conditional
      • Outbound and Inbound Emails
      • Email Statistics
      • Mass Email
    • SMS
      • Inbound SMS
      • Disposition-Triggered SMS
      • Dynamic SMS Contents
      • SMS Notifications
      • SMS Statistics
      • SMS Triggered Actions
      • Scheduled SMS Sending
      • Bulk Text Messaging
    • Inbound Robinson List
    • Quota Tool
  • Managing Users
    • Resource Management
      • Multi Project Management
      • Users, Rights and Teams
    • User Activity
      • Break Codes
      • User State Log
  • Security
    • About This Chapter
    • User Right Groups
    • Password Policies and Two-Factor Authentication
    • OAuth 2.0
    • IP Filtering
    • Database API
    • Functions to Help You Comply with Privacy Regulations
  • VCC Live Archiver
    • About This Chapter
    • Introduction to VCC Live Archiver
    • Setting up VCC Live Archiver
    • Using VCC Live Archiver
    • Commands and Command Options
    • CDR Log Headers
    • Switches (Deprecated)
  • Miscellaneous
    • About This Chapter
    • Salesforce Integration
    • VCC Live Pay IVR
    • Voice File Tagging
    • Replacing Transfer Process
Back to Support and Learning Center

Database API — Leverage VCC Live from Any ERP and CRM Systems

Estimated reading time: 7 minutes | Target users: IT Admins

Database APIs allow your system and the VCC Live server to exchange database information through HTTP GET, PUT, POST and DELETE requests. This means that your system can send specific messages to VCC Live, which in return, performs the requested action or provides the information specified in the request.

Note: This tutorial refers to Database API v2. Earlier versions are no longer supported.

In this lesson, you will learn:

  • What Database API is
  • The basics of Authentication, Security and IP Firewall
  • What Resource Patterns are
  • The API testing procedure

1. About Database APIs

Application Programming Interface (API for short) is a language and messaging format used by an application tool in order to communicate with operating systems, database management systems etc. APIs thus serve as the main means of communication between a user and an application or database.

In order to increase productivity, you can connect your systems with the VCC Live software and database with APIs. Using APIs has a number of benefits, such as:

  • You can gather project preferences, resources and user information in real time.
  • It makes it possible to get information about your voice files, or set their status programmatically.
  • It keeps your records list synchronized with your custom database stored in a CRM or any external application.
  • It can retrieve and filter a list of your available voice files.

Database API is based on REST and JSON.

  • REST (Representational State Transfer) is a software architectural style, that defines a set of constraints to be used with Web services, such as VCC Live. REST constraints that can be used with VCC Live are GET, PUT, POST and DELETE. Read more about Request and Responses.
  • JSON (JavaScript Open Notation) is a language-independent data format, that is used for transmitting data objects of attribute–value pairs and array data types. POST and PUT requests should contain a JSON-encoded HTTP body.

2. Authentication, Security and IP Firewall

A lot of sensitive information can be accessed using Database API, so it is essential to configure it properly. In order to provide the most secure environment for your API, it is advised to follow the below principles

  • The Database API should only be possible to be reached from predefined IP addresses and IP ranges.
  • The authentication process should be based on HTTP Basic Authentication.
  • Use an encryption standard such as TLS. HTTP supports TLS (Transport Layer Security), meaning that in such instance TLS makes sure the data sent between your system and VCC Live is secure, unmodified and remains unseen for third parties.

Warning: Please set the IP address definitions as restrictive as you can, and keep your password safe at all times.

2.1 Setting up the API

Before you can access the API, you must register your IP address(es) and generate a password.

You can use the genarated URL example, similar to https://mycc:157f…de62c@mycc.asp.virtual-call-center.eu/v2/projects. For developing and testing you should use your desktop’s public IP address.

2.2 Authentication process

The Database API uses HTTP Basic Authentication. Both the username and password should be set in every HTTP request. Credential information can be added to either the URL or the request header.

Here is an example using credentials in URL:

  • https://[customer]:[password]@[customer].asp.virtual-call-center.eu/v2/[resource]

2.3 IP Firewall

To have your API work properly, it is necessary to set up the IP Firewall settings properly.
Check out an overview for VCC Live Firewall Settings for a seamless operation with our servers.

For more information on HTTP Basic Authentication:

Basic Access Authentication


3. Resource Pattern

Database API resources consist of the following parts:

  • Protocol definition: https://
  • Domain: [customer].asp.virtual-call-center.eu
  • Parameters: /v2/[resource]/

So a complete resource specification looks like this:
https://[customer].asp.virtual-call-center.eu/v2/[resource]/

All variable names are wrapped in brackets, and should be replaced by the appropriate value. All of our customers have their own customer id, so if you are already a customer you will have one. In this document we use customer id “mycc” as an example.

Let’s see a sample resource:

https://mycc.asp.virtual-call-center.eu/v2/projects/123

This resource represents information about mycc company’s project 123.

A description of the available resources is detailed in the following chapters.


4. Testing the API

You can easily check whether the API works correctly using any web browser. Before testing API settings, please check if your public IP address has been already set. To test the API:

  • Either copy and paste your URL example (specified above) OR type the following resource in the browser’s URL field, then press Enter:
    https://: @.asp.virtual-call-center.eu/v2/projects
  • Your web browser will send an HTTP GET request to Database API
  • You should then automatically receive a list of VCC projects in JSON format

If there are any errors, please check HTTP Response Codes.


Congratulations!

You have just completed all tutorials in the Security chapter.

Back to Support and Learning Center

Comments

Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.


There are no comments yet.

Click here to cancel reply.

Please note that by clicking on the Submit button, you agree to a member of VCC Live team contacting you with business offers. You can find detailed information on how we can establish contact with you in our Privacy Policy

  • Channels
    • Voice
    • Email
    • SMS
    • Chat
    • Messenger
    • Omnichannel
  • Main Features
    • Call Center Software
    • Predictive Dialer
    • VCC Live Pay
    • Outbound IVR
    • Inbound IVR
    • Voicemail Detection
    • Live Dashboards
    • ACD
    • Salesforce Integration
    • Dialogflow
  • Solutions
    • Customer Service
    • Sales Teams
    • Debt Collection
    • Virtual Call Center
  • Resources
    • Blog
    • Case Studies
    • Ebooks
    • Courses
    • Webinars
    • Information Security
    • Learning Center
    • Developers
    • Download
  • Company
    • About us
    • Careers
    • News
    • Partners
https://vcc.live/wp-content/uploads/2019/07/iso-cert-1.png https://vcc.live/wp-content/uploads/2019/07/iso-cert-2.png https://vcc.live/wp-content/uploads/2019/07/iso-cert-3.png
Social Media
https://vcc.live/wp-content/uploads/2019/07/linkedin.svg https://vcc.live/wp-content/uploads/2019/07/twitter.svg https://vcc.live/wp-content/uploads/2019/07/facebook-1.svg https://vcc.live/wp-content/uploads/2019/07/instagram-1.svg
Call us
Hungary
+36 19996400
UK
+44 2086380169
Germany
+49 3021782516
Poland
+48 123950886
Romania
+40 31706167
USA
+1 3024988337
Hungary
+36 19996400
UK
+44 2086380169
Germany
+49 3021782516
Poland
+48 123950886
Romania
+40 31706167
USA
+1 3024988337
  • Privacy Policy
  • Cookie Policy
  • Legal Statement
  • General Terms of Agreement
  • Magyar nyelvű jogi dokumentumok