Overview

Workspaces in Mudstack are containers that organize and manage assets, libraries, tags, and other entities. Each workspace belongs to a specific account and is isolated from other workspaces. This means that all content within a workspace is accessible only through that workspace and cannot be shared across workspaces.

Key Concepts

Headers

To interact with a workspace, you must include the following headers in every API request:

  • x-workspace-id: The unique identifier of the workspace.
  • x-account-id: The unique identifier of the account to which the workspace belongs.

Without these headers, the API will not be able to identify the workspace or account, and the request will fail.

Entities Within a Workspace

Workspaces contain several entities, each with its own sub-entities. These include:

  • Assets: Files, images, videos, or other digital content. Assets can have versions, tags, comments, and attachments.
  • Libraries: Collections of assets grouped together for better organization.
  • Tags: Metadata used to categorize and search for assets.
  • Members: Users who have access to the workspace, with specific roles and permissions.
  • Settings: Configuration options for the workspace.
  • History: Logs of actions performed within the workspace.

Common API Endpoints

Below are some common endpoints for interacting with workspaces:

Workspace Management

Member Management

Asset Management

Folder Management

Library Management

Tag Management

Tasks

Settings Management

Example Request

Here is an example of how to retrieve the details of a workspace:

GET /workspaces HTTP/1.1
Host: api.mudstack.com
Authorization: Bearer <your_access_token>
x-account-id: <your_account_id>
x-workspace-id: <your_workspace_id>

Notes

  • Ensure that the x-workspace-id and x-account-id headers are included in every request to avoid authorization errors.
  • Workspaces are isolated, so entities like assets, libraries, and tags cannot be accessed outside their respective workspace.

For more details on specific endpoints, refer to the API reference documentation for each entity.