Skip to main content
POST
/
v2
/
workspaces
Create a new workspace
curl --request POST \
  --url https://api.topograph.co/v2/workspaces \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "branch-paris",
  "legalName": "Acme Paris SAS"
}
'

Authorizations

x-api-key
string
header
required

Body

application/json
name
string
required

Workspace identifier — unique within the account.

Maximum string length: 64
Pattern: ^[a-zA-Z0-9_-]+$
Example:

"branch-paris"

Display-friendly legal name used in reporting and invoices.

Maximum string length: 255
Example:

"Acme Paris SAS"

Response

201 - undefined