# Release | Add document to release

Adressed by operator account and operator's downloadcode:

<mark style="color:green;">`POST`</mark> `https://services.schneidergeo.com/content/release/{account}/{downloadCode}/document/v2?description=Hotelvoucher`&#x20;

Addressed by Release ID:

<mark style="color:green;">`POST`</mark> `https://services.schneidergeo.com/content/release/{id}/document?description=Hotelvoucher`&#x20;

Adding one PDF document to guidebook release. For multiple documents, please call this endpoint multiple times

#### Path Parameters

<table><thead><tr><th>Name</th><th width="174">Type</th><th>Description</th></tr></thead><tbody><tr><td>account<mark style="color:red;">*</mark></td><td>String</td><td>Your account ID, you can find this under Account Settings > General Settings > Account ID</td></tr><tr><td>downloadCode<mark style="color:red;">*</mark></td><td>String</td><td>The downloadCode for the release</td></tr></tbody></table>

#### Query Parameters

| Name                                          | Type   | Description                              |
| --------------------------------------------- | ------ | ---------------------------------------- |
| description<mark style="color:red;">\*</mark> | String | The title or description of the document |

#### Headers

| Name                                            | Type   | Description                                                                         |
| ----------------------------------------------- | ------ | ----------------------------------------------------------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Your API key, you can find this under Account Settings > General Settings > API Key |

#### Request Body

| Name                                   | Type   | Description                     |
| -------------------------------------- | ------ | ------------------------------- |
| file<mark style="color:red;">\*</mark> | String | The PDF document to be uploaded |

Example:

```
curl --location --request POST 'https://services.schneidergeo.com/content/release/{account}/{downloadCode}/document?description=Train Ticket' \
--header 'Authorization: aiose9-98erjsd-0a9s8duj-ds8sss' \
--form 'file=@"/home/fritz/Documents/7HTUUL.pdf"'
```
