Vonage Video API - Secure Callbacks Public Beta Announcement
Published on May 31, 2023

Introduction

The Vonage Video API has a new feature called Secure Callbacks which is in public beta today, with general availability coming in June 2023. The secure callbacks feature provides a way to verify a webhook callback request is coming from Vonage and that its payload has not been tampered with during transit. This will protect against unauthorized callbacks and adds additional security benefits for those industries with specific compliance requirements.

The Vonage Video API uses callbacks to provide events and status updates to the application for Session Monitoring, Archiving/Recording, SIP, and Experience Composer. The secure callbacks are signed by a signature secret that the user configures through the Video Account Portal, which can be verified by the receiving application to validate that the callback originated from Vonage.

Enabling Secure Callbacks

Head over to the Video API Dashboard and select a project that you’d like to implement this feature. Scroll down until you see Project Settings and the Secured Callback slider button, as shown below.

Project SettingsProject Settings inside the Video API Dashboard

Press the Edit button and toggle the Secured Callback slider button to on, and press Save.

> Note: For restricted inbound traffic, Vonage IP addresses must be added to your firewall's list of approved IP addresses.

Now that the feature has been enabled let’s discuss the various API callbacks and what each does before enabling one.

Vonage Video API Callbacks

The Vonage Video API provides several API callbacks that can be secured with this feature, including:

  1. Session Monitoring - Monitors session activity.

  2. Archiving Monitoring - Monitors archive (or recordings) status.

  3. SIP Call Monitoring - Monitors SIP call activity.

  4. Experience Composer Monitoring - Monitors Experience Composer.

We’ll use Session Monitoring for this example, but the knowledge gained in this section applies to any of the other callbacks mentioned.

Session Monitoring

Developers can monitor certain activities of clients from within their app server. By registering for callbacks, your callback URL will receive HTTP POST requests when any client connects or publishes.

To enable it on your current video project, scroll down until you see Session Monitoring and click Configure.

Session MonitoringSession Monitoring inside the Video API Dashboard

You can configure the callback URL and toggle the Signature Secret to on. It provides a randomly generated signature by default, but you can specify your own. Click Submit to continue. The system will report that secure callbacks have been configured with the URL and signature secret.

Validate the Request

There are two primary ways to validate secure callbacks:

  1. Verifying the request - Secure Callbacks will include a JWT in the Authorization header. The secret used to sign the request corresponds to the signature secret associated with the api_key included in the JWT claims. You can identify your signature secret on the Dashboard. It's recommended that signature secrets be no less than 32 bits to ensure their security.

  2. Verifying the payload - Once you have verified the authenticity of the request, you may optionally verify the request payload has not been tampered with by comparing an SHA-256 hash of the payload to the payload_hash field found in the JWT claims. The payload has been tampered with during transit if they do not match. You only need to verify the payload if you are using HTTP rather than HTTPS, as Transport Layer Security (TLS) prevents MITM attacks.

An example of what the Signed JSON Web Token (JWT) would look like:

// header
{
  "alg": "HS256",
  "typ": "JWT",
}
// payload
{
  "iat": 1587494962,
  "jti": "c5ba8f24-1a14-4c10-bfdf-3fbe8ce511b5",
  "iss": "Vonage",
  "payload_hash" : "d6c0e74b5857df20e3b7e51b30c0c2a40ec73a77879b6f074ddc7a2317dd031b",
  "api_key": "a1b2c3d",
  "application_id": "aaaaaaaa-bbbb-cccc-dddd-0123456789ab"
}

Notice that the payload_hash field is an SHA-256 hash of the request payload. It can be compared to the request payload to ensure it has not been tampered with during transit.

A Node.js code sample can be found here.

Wrap-up

To recap, Secure Callbacks is a security feature that ensures that each callback has not been tampered with in transit. This defends against intercept and later replay. It verifies that the request originates from Vonage and ensures compliance needs are met for many important industries. You can use it today, free of charge, with general availability starting in June 2023. Please visit this list of limitations and considerations page, as information is updated frequently.

Michael CrumpManager, Developer Experiences

Michael Crump works at Vonage on the Developer Experiences team and is a coder, YouTuber, and frequent speaker of various .NET and cloud/communication development topics. He’s passionate about helping developers understand the benefits of each in a no-nonsense way.

Ready to start building?

Experience seamless connectivity, real-time messaging, and crystal-clear voice and video calls-all at your fingertips.