How to use the Vidyard Dashboard API

Avatar
Brendan O'Driscoll
Who Can Use This Feature?
FreeStarter
Teams Enterprise
Users must belong to a Team with the Edit API tokens permission enabled.


 

The Vidyard Dashboard API allows you to programmatically manage assets in your Vidyard account. This includes video players, tags, and video metadata.

The API is valuable for anyone looking to build an integration with Vidyard from other services, or to manage a large volume of content programmatically.

The API supports basic Create, Read, Update, and Delete (CRUD) actions.

Access your API tokens

You will need an API token to use the dashboard API. An API token is used to tell Vidyard that you are authorized to make changes to your account through the API.

Tokens are unique to each folder in your account. For example, an API Token from one subfolder will only allow you to make changes to the assets in that folder.

Tokens are also role-based. Each role's token will only allow you to perform dashboard actions your user is permitted to perform.

  1. Sign in to Vidyard
  2. From the side menu, select AdminAPI Tokens
    • If needed, select Change Folder to switch into the specific folder that you want to make changes to via the API
  3. Select and copy an API token. You will only see API Tokens relevant to your user's role in Vidyard
    Copying an API Token in Vidyard

Formatting your API requests

The API uses JSON to format requests and responses. For each request, you should include Content-Type and Accept properties in the header with a value of application/json.

Use the auth_token parameter along with your API token to authorize requests. You can add the parameter as an attribute in the request body or as a query parameter in the URL. 

var settings = {
"url": "https://api.vidyard.com/endpoint?auth_token={yourToken}",
"method": "GET",
"headers": {
   "Content-Type": "application/json",
   "Accept": "application/json"
},
};

Key resources

More details on the Dashboard API, including available endpoints, can be found on Vidyard's developer documentation.

Need support

Submit a ticket or start a chat. We'll provide a self-serve resource or connect you with our support team, available 24x5.

Chat with Our Team