CLI & MCP

Waymaker orgs

View organization information and profile settings. Organizations are the top-level container for all Waymaker resources.

OrganizationsAdmin
Last updated: January 21, 2026

Overview

View organization information and profile settings. Organizations are the top-level container for all Waymaker resources.

Usage

waymaker orgs <subcommand> [options]

Subcommands

SubcommandDescription
profileView organization profile

View Profile

waymaker orgs profile

Output:

Organization Profile

ID: org_abc123
Name: Acme Corporation
Slug: acme-corp
Created: January 1, 2026

Subscription:
  Tier: pro
  Status: active

Limits:
  Workspaces: 10 / unlimited
  Users: 25 / 50

JSON Output

waymaker orgs profile --json
{
  "id": "org_abc123",
  "name": "Acme Corporation",
  "slug": "acme-corp",
  "subscription": {
    "tier": "pro",
    "status": "active"
  },
  "limits": {
    "workspaces": { "used": 10, "limit": null },
    "users": { "used": 25, "limit": 50 }
  },
  "created_at": "2026-01-01T00:00:00Z"
}

Options Reference

OptionTypeDescription
--jsonflagOutput as JSON

AI Agent Workflow

# Get organization tier for feature gating
TIER=$(waymaker orgs profile --json | jq -r '.subscription.tier')

if [ "$TIER" = "enterprise" ]; then
  echo "Enterprise features available"
fi