Overview

Accounts in Mudstack represent the top-level entity for organizing and managing your content. They are used by users, teams, or studios to group workspaces and their associated entities. All content within an account is isolated and cannot be accessed without specifying the appropriate x-account-id header in every API request.

Key Concepts

Accounts

  • Definition: An account is the primary container for all your workspaces and your team members.
  • Ownership: All content inside an account belongs exclusively to that account.
  • Access Control: API requests must include the x-account-id header to interact with account-specific resources.

Entities within Accounts

Accounts own various entities, including:

  • Workspaces: Containers environments for assets, tags, libraries, and tasks.
  • Invites: Pending invitations for new members.
  • History: Logs of account activities.
  • Members: Users associated with the account.
  • Settings: Configuration options for the account.

API Headers

To interact with accounts, include the following headers in your API requests:

  • Authorization: Bearer token for authentication.
  • x-account-id: The unique identifier of the account you want to access.

Example:

GET /accounts HTTP/1.1
Host: api.mudstack.com
Authorization: Bearer <your-token>
x-account-id: <account-id>

Common API Endpoints

1. Account

2. Account Members

3. List Workspaces in an Account

4. Account Settings

5. Account History

6. Account Invites

Additional Information

For more API endpoints, refer to the API Reference.