# POST /api/v1/ai-reporting/decks/{deck_id}/share

> Create a public share link for a deck

- **Tag:** ai-reporting
- **Operation ID:** `create_share_api_v1_ai_reporting_decks__deck_id__share_post`

## Description

Mint a SHA-256 token-protected public share URL. The raw token is returned in this response exactly once — store or display it immediately. Subsequent listings only show metadata (no token).

## Authentication

Bearer token in `Authorization` header.
Required header: `x-business-id: <business uuid>`.

## Parameters

- `deck_id` (path, string, required)

## Request body

Schema: `CreateShareRequest`

- `expires_in_hours` (integer)
- `slug` (string)

## Responses

### 201 — Successful Response

Schema: `ShareLinkResponse`

- `share_id` (string · required)
- `deck_id` (string · required)
- `token` (string · required)
- `url` (string · required)
- `expires_at` (string · date-time)
- `slug` (string)

### 400 — Bad Request - Invalid input

### 401 — Unauthorized - Authentication required

### 403 — Forbidden - Insufficient permissions

### 404 — Not Found - Resource does not exist

### 422 — Validation Error

Schema: `HTTPValidationError`

- `detail` (array · ValidationError) → `ValidationError`
  - `loc` (array · string | integer · required)
  - `msg` (string · required)
  - `type` (string · required)
  - `input` (object)
  - `ctx` (object)

## Code samples

### cURL

```bash
curl -X POST 'https://api.ondayzero.com/api/v1/ai-reporting/decks/{deck_id}/share' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "expires_in_hours": 0,
  "slug": "string"
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/ai-reporting/decks/{deck_id}/share', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "expires_in_hours": 0,
  "slug": "string"
}),
});
const data = await response.json();
```

### Python

```python
import httpx

headers = {
    "Authorization": "Bearer dz_your_token",
    "x-business-id": "YOUR_BUSINESS_ID",
}

payload = {
  "expires_in_hours": 0,
  "slug": "string"
}

response = httpx.post("https://api.ondayzero.com/api/v1/ai-reporting/decks/{deck_id}/share", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/ai-reporting/create-share
- OpenAPI slice: https://www.ondayzero.com/docs/reference/ai-reporting/create-share/openapi.json
- Other endpoints in **ai-reporting**: https://www.ondayzero.com/docs/reference/ai-reporting
