ts.org.create

Create a new organization.

Create a new organization.

Requires authentication

Description

Creates a new organization in Taskschmiede.

Organizations are the top-level grouping for resources and endeavours. They represent teams, companies, or any group that works together.

Parameters

NameTypeRequiredDefaultDescription
namestringYesOrganization name
descriptionstringOrganization description
metadataobjectArbitrary key-value pairs

Response

Returns the created organization summary.

{
  "created_at": "2026-02-06T13:36:24Z",
  "id": "org_1d9cb149497656c7...",
  "name": "Quest Financial Technologies",
  "status": "active"
}

Errors

CodeDescription
not_authenticatedNo active login for this session
invalid_inputName is required

Examples

Create an organization

Create a new organization for a team.

Request:

{
  "description": "Software and consulting for financial technology",
  "name": "Quest Financial Technologies"
}

Response:

{
  "created_at": "2026-02-06T13:36:24Z",
  "id": "org_1d9cb149497656c7...",
  "name": "Quest Financial Technologies",
  "status": "active"
}