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

# Organizations

> Manage organization settings

## Get Organization

Retrieve organization details by ID.

### Example Request

```bash
GET /v1/organizations/{orgId}
```

### Response

```json
{
  "success": true,
  "data": {
    "orgId": "org-123",
    "name": "My Organization",
    "authToken": "auth-token-123",
    "webhookUrl": "https://example.com/webhook"
  }
}
```

## Update Organization

Update organization details.

### Example Request

```bash
PUT /v1/organizations/{orgId}
```

```json
{
  "name": "Updated Org Name",
  "webhookUrl": "https://example.com/new-webhook"
}
```

### Response

```json
{
  "success": true,
  "data": {
    "orgId": "org-123",
    "name": "Updated Org Name",
    "authToken": "auth-token-123",
    "webhookUrl": "https://example.com/new-webhook"
  }
}
```
