# GetOrganizationResponse

**data** object

**id** string required

Organization ID

**name** string

Name of the organization

**active** boolean

If set to false, the organization is deactivated

**quota** object

**limit_bytes** int64 required

The number of bytes that the organization is allowed to store across all of its buckets. Zero means no limit.

GetOrganizationResponse

```json
{
  "data": {
    "id": "string",
    "name": "string",
    "active": true,
    "quota": {
      "limit_bytes": 0
    }
  }
}
```
