For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
      • AstroFully-managed data operations, powered by Apache Airflow.
      • Astro Private CloudRun Airflow-as-a-service in your environment.
      • Professional ServicesExpert Airflow services for your enterprise's success.
    • Tools
      • Cosmos
      • Orbiter
      • CLI
      • AI SDK
      • Agents
      • Blueprint
      • UpdatesThe State of Airflow 2026See the insights from over 5,800 data practitioners in the full report. Download Now ➔
  • Customers
  • Docs
    • Insights
      • Blog
      • Webinars
      • Resource Library
      • Events
    • Education
      • Academy
      • What is Airflow?
  • Pricing
Get Started Free
  • Astro API v1beta1
    • v1beta1 deprecation notice
    • Migrate to v1
  • Platform API Reference
      • GETList Workspaces
      • POSTCreate Workspace
      • GETGet Workspace
      • POSTUpdate Workspace
      • DELDelete Workspace
    • Changelog
  • IAM API Reference
    • Changelog
    • Book Office Hours

Product

  • Platform Overview
  • Astro
  • Astro Observe
  • Astro Private Cloud
  • Security & Trust
  • Pricing

Tools & Services

  • Cosmos
  • Docs
  • Professional Services
  • Product Updates

Use Cases

  • AI Ops
  • Data Observability
  • ETL/ELT
  • ML Ops
  • Operational Analytics
  • All Use Cases

Industries

  • Financial Services
  • Gaming
  • Retail
  • Manufacturing
  • Healthcare
  • All Industries

Resources

  • Academy
  • eBooks & Guides
  • Blog
  • Webinars
  • Events
  • The Data Flowcast Podcast
  • All Resources

Airflow

  • What is Airflow
  • Airflow on Astro
  • Airflow 3.0
  • Airflow Upgrades
  • Airflow Use Cases
  • Airflow 2.x End of Life

Company

  • Our Story
  • Customers
  • Newsroom
  • Careers
  • Contact

Support

  • Knowledge Base
  • Status
  • Contact Support
GitHubYouTubeLinkedInx
  • Legal
  • Privacy
  • Terms of Service
  • Consent Preferences

  • Do Not Sell or Share My Personal information
  • Limit the Use Of My Sensitive Personal Information

Apache Airflow®, Airflow, and the Airflow logo are trademarks of the Apache Software Foundation. Copyright © Astronomer 2026. All rights reserved.

LogoLogo
Platform API ReferenceWorkspace

Create Workspace

POST
https://api.astronomer.io/platform/v1beta1/organizations/:organizationId/workspaces
POST
/platform/v1beta1/organizations/:organizationId/workspaces
$curl -X POST https://api.astronomer.io/platform/v1beta1/organizations/organizationId/workspaces \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "My Workspace"
>}'
1{
2 "cicdEnforcedDefault": true,
3 "createdAt": "2023-09-08T12:00:00Z",
4 "id": "clm8t5u4q000008jq4qoc3036",
5 "name": "My Workspace",
6 "organizationId": "clm8t5u4q000008jq4qoc3036",
7 "updatedAt": "2023-09-08T13:30:00Z",
8 "createdBy": {
9 "id": "clm8qv74h000008mlf08scq7k",
10 "apiTokenName": "my-token",
11 "avatarUrl": "https://avatar.url",
12 "fullName": "Jane Doe",
13 "subjectType": "USER",
14 "username": "user1@company.com"
15 },
16 "description": "This is a test workspace",
17 "organizationName": "My Organization",
18 "updatedBy": {
19 "id": "clm8qv74h000008mlf08scq7k",
20 "apiTokenName": "my-token",
21 "avatarUrl": "https://avatar.url",
22 "fullName": "Jane Doe",
23 "subjectType": "USER",
24 "username": "user1@company.com"
25 }
26}
Create a Workspace.
Was this page helpful?
Previous

Get Workspace

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

organizationIdstringRequired
The ID of the Organization to which the Workspace will belong.

Request

The request body for creating a new Workspace.
namestringRequired<=50 characters
The Workspace's name.
cicdEnforcedDefaultbooleanOptional

Whether new Deployments enforce CI/CD deploys by default.

descriptionstringOptional
The Workspace's description.

Response

OK
cicdEnforcedDefaultboolean

Whether CI/CD deploys are enforced by default.

createdAtstringformat: "date-time"

The time when the Workspace was created in UTC, formatted as YYYY-MM-DDTHH:MM:SSZ

idstring
The Workspace's ID.
namestring
The Workspace's name.
organizationIdstring
The ID of the organization to which the workspace belongs.
updatedAtstringformat: "date-time"

The time when the Workspace was updated in UTC, formatted as YYYY-MM-DDTHH:MM:SSZ

createdByobject
descriptionstring
The Workspace's description.
organizationNamestring
The name of the Organization to which the Workspace belongs.
updatedByobject

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error