> ## Documentation Index
> Fetch the complete documentation index at: https://docs.squarecloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Workspace erstellen

> Erstellt einen neuen Workspace in deinem Square Cloud Konto.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  Der API-Schlüssel für Ihr Konto. Sie finden ihn in Ihren [Kontoeinstellungen](https://squarecloud.app/de/account/security).
</ParamField>

### Parameter

<ParamField body="name" type="string" placeholder="Workspace name">
  Eine Zeichenkette, die den Namen des Workspace angibt. <br />Muss dem Muster a bis z, A bis Z, 0 bis 9, Leerzeichen und \_ entsprechen. (1-32 Zeichen)
</ParamField>

### Antwort

<ResponseField name="status" type="string">
  Gibt an, ob der Aufruf erfolgreich war. `success` bei Erfolg, `error` andernfalls.
</ResponseField>

<ResponseField name="response" type="object">
  Der Inhalt der Antwort.

  <Expandable title="Objekt umschalten">
    <ResponseField name="id" type="string">
      Die ID des Workspace.
    </ResponseField>

    <ResponseField name="name" type="string">
      Der Name des Workspace.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}

  {
      "status": "success",
      "response": {
          "id": "dcedcd13d7e272a7b32a70f6a1d180f23c12d759",
          "name": "Test"
      }
  }

  ```
</ResponseExample>
