v1

latestOpenAPI 3.0.0UNLICENSED2026-07-26178479713.7 KB
account-stores

aid_account_management_stores_post

Create a store

scopes:

  • admin:accounts
  • write:accounts
post/accounts/{aid}/stores

Path parameters

aidstring ^[PT]{1}\d{8}$ required

An id that uniquely identifies the account.

Request body

store_namestring required
emailstring email
phone_numberstring E.164 required

A phone number in E.164 format

websitestring
store_idstring

Client-supplied store identifier. If omitted, the server generates one (e.g. T12345678-0001) and uses it as the store_id.

Example request

{
  "organization": {
    "country": "NO"
  },
  "phone_number": "+4799999999",
  "address": {
    "address_line": "Sommerkroveien 34",
    "address_line_2": "PB 123",
    "postal_code": "0349",
    "postal_place": "Oslo",
    "country": "NO"
  },
  "coordinates": {
    "latitude": 59.949923,
    "longitude": 10.766888
  },
  "payout_destination": {
    "payout_destination_id": "PD032"
  },
  "store_id": "S312",
  "configuration": {
    "auto_end_of_day": {
      "time": "2300",
      "timezone": "Europe/Oslo"
    }
  }
}

Response

Store

idstring required
namestring

name of the store, aka trade name of the store

business_namestring

Official name of the person or entity that owns the store.

chainstring
emailstring
glnstring
organization_numberstring
phone_numberstring
mccstring iso-18245

A four-digit Merchant Category Code (MCC) for the store ISO 18245:2003

baxstring

Merchant number associated with the stores payment terminal

terminal_idstring

Id to a specific point-of-sale (POS) terminal or workstation

payout_destination_idstring

The payout destination id for the merchant of record, i.e. the seller responsible for the transaction.

Required when seitatech.in_person payment is enabled.

Example response

{
  "id": "sc029",
  "name": "SC Oslo",
  "business_name": "SC Oslo AS",
  "address": {
    "address_line": "Sommerkroveien 34",
    "address_line_2": "PB 123",
    "postal_code": "0349",
    "postal_place": "Oslo",
    "country": "NO"
  },
  "chain": "SuperChain",
  "email": "contact@superchain.com",
  "gln": "5790001398644",
  "organization_number": "123456789MVA",
  "phone_number": "+4738260107",
  "mcc": "5814",
  "bax": "102603",
  "terminal_id": "T0292",
  "payout_destination_id": "seller-1"
}