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

NameRequiredExample

platformId

nintendo-64

gameId

banjo-kazooie

region

pal/ntscu/ntscc/ntscj

new

true/false

boxed

true/false

instructions

true/false

description

Some text

price

1250 The price should be in the base unit. For example, for £10, write 1000.

includeProtection

true/false Whether the given price should be adjusted to include any buyer fees.

status

open/closed

Last updated