Skip to main content
POST
/
organisations
/
{orgId}
/
workspaces
Create new workspace
curl --request POST \
  --url https://api.meetsquad.ai/organisations/{orgId}/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "missionStatement": "Develop innovative products that solve real customer problems",
  "homepageUrl": "<string>",
  "logoUrl": "<string>",
  "description": "<string>",
  "outcomes": [
    "<string>"
  ],
  "utm": {
    "source": "<string>",
    "medium": "<string>",
    "campaign": "<string>",
    "term": "<string>",
    "content": "<string>"
  }
}
'
{
  "data": {
    "id": "c0e195d9-b918-4a3a-bd8b-f730361d044f",
    "name": "Product Development",
    "missionStatement": "Develop innovative products that solve real customer problems",
    "createdAt": "2025-03-26T22:35:46Z",
    "updatedAt": "2025-03-26T22:35:46Z",
    "status": "Initializing",
    "homepageUrl": "https://product.example.com",
    "logoUrl": "https://product.example.com/logo.png",
    "description": "This workspace focuses on our core product development initiatives, including roadmap planning, feature development, and product improvements."
  }
}

Authorizations

Authorization
string
header
required

JWT authentication for organization-scoped endpoints.

Path Parameters

orgId
string
required

Organization ID

Body

application/json

Request schema for creating a workspace

name
string
required
missionStatement
string
required

Mission statement for the workspace

Example:

"Develop innovative products that solve real customer problems"

homepageUrl
string
logoUrl
string
description
string
outcomes
string[]
utm
object

Response

Workspace created successfully

Response containing a single workspace

data
object
required

Workspace data