# Create a Location

Creates a new `Location` object. For further details, including which address fields are required in each country, see the [Manage locations](https://docs.stripe.com/terminal/fleet/locations.md) guide.

## Request

```curl
curl https://api.stripe.com/v1/terminal/locations \
  -u "<<YOUR_SECRET_KEY>>" \
  -d "display_name=My First Store" \
  -d "address[line1]=1234 Main Street" \
  -d "address[city]=San Francisco" \
  -d "address[postal_code]=94111" \
  -d "address[state]=CA" \
  -d "address[country]=US"
```

### Response

```json
{
  "id": "tml_FBakXQG8bQk4Mm",
  "object": "terminal.location",
  "address": {
    "city": "San Francisco",
    "country": "US",
    "line1": "1234 Main Street",
    "line2": "",
    "postal_code": "94111",
    "state": "CA"
  },
  "display_name": "My First Store",
  "livemode": false,
  "metadata": {}
}
```

## Returns

Returns a `Location` object if creation succeeds.

## Parameters

- [`address`](https://docs.stripe.com/api/terminal/locations/create.md?query=address) (object, optional)
  The full address of the location.

- `display_name` (string, optional)
  A name for the location. Maximum length is 1000 characters.

- [`address_kana`](https://docs.stripe.com/api/terminal/locations/create.md?query=address_kana) (object, optional)
  The Kana variation of the full address of the location (Japan only).

- [`address_kanji`](https://docs.stripe.com/api/terminal/locations/create.md?query=address_kanji) (object, optional)
  The Kanji variation of the full address of the location (Japan only).

- `configuration_overrides` (string, optional)
  The ID of a configuration that will be used to customize all readers in this location.

  The maximum length is 500 characters.

- `display_name_kana` (string, optional)
  The Kana variation of the name for the location (Japan only). Maximum length is 1000 characters.

- `display_name_kanji` (string, optional)
  The Kanji variation of the name for the location (Japan only). Maximum length is 1000 characters.

- `metadata` (map, optional)
  Set of [key-value pairs](https://docs.stripe.com/api/metadata.md) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.

- `phone` (string, optional)
  The phone number for the location.
