# Bulk Imports

If you have many games to sell at once, you might want to consider creating a bulk import CSV file.

A CSV (comma separated values) is a file that contains (surprisingly) comma separated values. These can be imported and used to populate listing details.\
\
Each row of the file represents a listing, and each comma (,) denotes a new column. The first row in the file should be a list of headers that tell us which column is which.

###

### Example

```
platformId,gameId,new,description,boxed,instructions,price,includeProtection,region,status
nintendo-64,banjo-kazooie,false,Some description text,false,false,2000,false,ntscu,open
snes,super-metroid,false,,true,true,1550,true,pal,closed
```

###

### Fields

<table><thead><tr><th width="191">Name</th><th width="115" data-type="checkbox">Required</th><th>Example</th></tr></thead><tbody><tr><td>platformId</td><td>true</td><td><code>nintendo-64</code></td></tr><tr><td>gameId</td><td>true</td><td><code>banjo-kazooie</code></td></tr><tr><td>region</td><td>false</td><td><code>pal/ntscu/ntscc/ntscj</code></td></tr><tr><td>new</td><td>false</td><td><code>true/false</code></td></tr><tr><td>boxed</td><td>false</td><td><code>true/false</code></td></tr><tr><td>instructions</td><td>false</td><td><code>true/false</code></td></tr><tr><td>description</td><td>false</td><td>Some text</td></tr><tr><td>price</td><td>true</td><td><code>1250</code><br>The price should be in the base unit. For example, for £10, write 1000.</td></tr><tr><td>includeProtection</td><td>false</td><td><code>true/false</code><br>Whether the given price should be adjusted to include any buyer fees.</td></tr><tr><td>status</td><td>false</td><td><code>open/closed</code></td></tr></tbody></table>
