Skip to main content
POST
/
v1
/
organizations
Create an organization
curl --request POST \
  --url https://api.tripwirejs.com/v1/organizations \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Growth Workspace",
  "slug": "acme-growth"
}
'
{
  "data": {
    "object": "organization",
    "id": "org_f6m39y94nh6fs513q03skj929c",
    "name": "Acme Growth Workspace",
    "slug": "acme-growth",
    "status": "active",
    "created_at": "2026-03-24T20:00:00.000Z",
    "updated_at": "2026-03-24T20:00:05.000Z"
  },
  "meta": {
    "request_id": "req_cf147349a4134208aebb8c70e25fb7e1"
  }
}

Body

application/json
name
string
required
Minimum string length: 1
Example:

"Acme Growth Workspace"

slug
string
required
Pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$
Example:

"acme-growth"

Response

Organization created.

data
object
required
Example:
{
"object": "organization",
"id": "org_f6m39y94nh6fs513q03skj929c",
"name": "Acme Growth Workspace",
"slug": "acme-growth",
"status": "active",
"created_at": "2026-03-24T20:00:00.000Z",
"updated_at": "2026-03-24T20:00:05.000Z"
}
meta
object
required
Example:
{
"request_id": "req_cf147349a4134208aebb8c70e25fb7e1"
}