---
title: "Create a merchant store"
method: POST
path: "/api/public/v1/merchants/{merchant_reference}/stores"
tags: ["Merchant Stores"]
---

# Create a merchant store

`POST /api/public/v1/merchants/{merchant_reference}/stores`

Create a new store for the merchant

## Path parameters

- `merchant_reference` string, required

## Headers

- `Authorization` string, required

## Request body

- CreateMerchantStore
  - `reference` string, required
  - `name` string, required
  - `city` string
  - `postal_code` string
  - `address` string
  - `store_phone` string
  - `store_email` string
  - `active` boolean

## Response `201`

created

- object
  - `id` string, required
  - `reference` string, required
  - `name` string, required
  - `active` boolean, required
  - `orders_count` integer, required
  - `users_count` integer, required
  - `user_authorizations` object[], required
    - `id` string, required
    - `email` string, required
    - `name` string, required
  - `created_at` string, required

## Other responses

- `401` — unauthorized
- `422` — unprocessable entity

---

[API](https://skmtc.dev/sequra/apis/checkout-api.md) · [All operations](https://skmtc.dev/sequra/apis/checkout-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sequra/checkout-api/revisions/2b0b60c52d04/schema)
