> ## 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.

# Ottieni workspace

> Ottieni le informazioni del workspace.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  La chiave API del tuo account. Puoi trovarla nelle [impostazioni del tuo account](https://squarecloud.app/it/account/security).
</ParamField>

### Parametri

<ParamField path="workspaceId" type="string" placeholder="Workspace Id">
  L'ID del workspace.
</ParamField>

### Risposta

<ResponseField name="status" type="string">
  Indica se la chiamata è andata a buon fine. `success` in caso di successo, `error` in caso contrario.
</ResponseField>

<ResponseField name="response" type="object">
  Il contenuto della risposta.

  <Expandable title="Toggle object">
    <ResponseField name="id" type="string">
      L'ID del workspace.
    </ResponseField>

    <ResponseField name="owner" type="string">
      L'ID del proprietario del workspace.
    </ResponseField>

    <ResponseField name="name" type="string">
      Il nome del workspace.
    </ResponseField>

    <ResponseField name="members" type="object">
      L'elenco dei membri del workspace.

      <Expandable title="Toggle object">
        <ResponseField name="id" type="string">
          L'ID dell'utente.
        </ResponseField>

        <ResponseField name="name" type="string">
          Il nome dell'utente.
        </ResponseField>

        <ResponseField name="group" type="string">
          I permessi del membro sulle applicazioni del workspace.
        </ResponseField>

        <ResponseField name="joinedAt" type="string">
          Il timestamp di ingresso in UTC-0.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="applications" type="object">
      L'elenco delle applicazioni del workspace.

      <Expandable title="Toggle object">
        <ResponseField name="id" type="string">
          L'ID dell'applicazione caricata.
        </ResponseField>

        <ResponseField name="name" type="string">
          Il nome dell'applicazione caricata.
        </ResponseField>

        <ResponseField name="ram" type="number">
          L'utilizzo di RAM dell'applicazione caricata in MB.
        </ResponseField>

        <ResponseField name="language" type="object">
          Il linguaggio di programmazione dell'applicazione caricata.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      Il timestamp di creazione in UTC-0.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "response": {
      "id": "dcedcd13d7e272a7b32a70f6a1d180f23c12d759",
      "name": "Test",
      "owner": "5354d9742d889d49b20134ba0be09ccc0033be68",
      "members": [
        {
          "name": "Example",
          "id": "5354d9742d889d49b20134ba0be09ccc0033be68",
          "group": "owner",
          "joinedAt": "2025-06-04T20:44:55.934Z"
        }
      ],
      "applications": [],
      "createdAt": "2025-06-04T20:44:55.934Z"
    }
  }
  ```
</ResponseExample>
