Create Workspace

Create live stream workspace.

Body
application/json
  • name
    Type: string
    required

    Collection name

Responses
  • application/json
Request Example for post/video/sources/live
import Gumlet from '@gumlet/nodejs-sdk';

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

const liveStreamWorkspace = await client.liveStreamWorkspaces.create({
  name: '',
});

console.log(liveStreamWorkspace);
{
  "id": "string",
  "video_workspace_id": "string",
  "created_at": "2026-09-18T04:36:43.780Z",
  "name": "string",
  "updated_at": "2026-09-18T04:36:43.780Z"
}