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

# Create

## ✨ Create a Creative

Creates a new creative for an advertiser.

### 📤 Request Example

```bash theme={null}
curl -X POST https://betaapi.audiohook.com/v2/companies/:companyUUID/creatives \
  -H "Authorization: Bearer ${API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "request_headers": [
      { "name": "X-Request-Header", "value": "Header value" }
    ],
    "body": {
      "creative_name": "Snarkys 30 sec Christmas spot",
      "advertiser_id": "1234-abcd-qwer-xcvb",
      "status": true,
      "filename": "my-great-audio-ad.wav",
      "tags": [...],
      "start_flight_date": "2022-12-01",
      "end_flight_date": "2023-01-01",
      "events": [...],
      "companion_ad": {
        "click_through_url": "https://snarkyspizza.com/...",
        "display_asset_filename": "eat-at-snarkys-christmas-spot.png"
      }
    }
  }'
```

### ✅ Response Example

```json theme={null}
{
  "creativeId": 9999,
  "s3_data": { ... },
  "s3_displayad": { ... }
}
```

### 🌐 HTTP Request

```http theme={null}
POST /v2/companies/:companyUUID/creatives
```

### 🧾 Body Parameters

| Parameter           | Required | Type    | Description                         |
| ------------------- | -------- | ------- | ----------------------------------- |
| creative\_name      | ✅        | string  | Name of the creative.               |
| advertiser\_id      | ✅        | string  | Advertiser UUID.                    |
| status              | ✅        | boolean | Active status for use in campaigns. |
| filename            | ✅        | string  | Filename including extension.       |
| tags                | ❌        | array   | Tags to categorize creative.        |
| start\_flight\_date | ❌        | string  | Start date in Y-M-D.                |
| end\_flight\_date   | ❌        | string  | End date in Y-M-D.                  |
| events              | ❌        | array   | Pixel events to attach.             |
| companion\_ad       | ❌        | object  | Companion display ad.               |

***
