Get Workspace

This endpoint get all the data of video workspace that has previously been created.

Path Parameters
  • workspace_id
    Type: string
    required

    Gumlet workspace ID. You can get it on Gumlet dashboard or retrieve it using list workspace API.

Responses
  • application/json
  • application/json
Request Example for get/video/workspaces/{workspace_id}
import Gumlet from '@gumlet/nodejs-sdk';

const client = new Gumlet({
  apiKey: process.env['API_KEY'], // defaults to the API_KEY env var
});

const videoWorkspace = await client.videoWorkspaces.retrieve('workspaceId');

console.log(videoWorkspace);
{}