Create Location
Creates a new store or branch (“location”) under an existing merchant.
The call returns a locationId
that you will reference when you create terminals or pull reporting data.
Endpoint
POST /Merchants/{id}/locations
Purpose
Attach a new location to the merchant identified by {id}
and return its unique identifier.
Path parameters
id
string
✔︎
The merchantId
that will own the new location
Request headers
Authorization
Bearer <access-token>
Content-Type
application/json
Accept
application/json
Request body
address
object
✔︎
Must include at least address1
, city
, country
, postalCode
name
string
✘
Friendly label shown in dashboards (e.g., “Downtown Flagship”)
tenderTypes
array<string>
✘
Allowed rails; omit to inherit merchant defaults
maxTransactionAmount
integer
✘
Hard ceiling (minor units) for a single sale; 0
= no limit
Example request
Successful response — 200
id
New locationId
; store for later calls
created
, updated
ISO-8601 timestamps (UTC)
tenderTypes
Effective tender list after inheritance rules
terminals
Empty until you create terminals
Error responses
400
Missing required address fields or invalid values
404
Merchant {id}
does not exist or is not visible to your token
409
Duplicate location (same address already registered for this merchant)
Best practices
Create under the right merchant – pass the correct
merchantId
so dashboards aggregate correctlyConsistent naming – adopt a clear pattern (city + store #) to ease support look-ups
Disable before delete – always disable production locations before deleting to prevent accidental transactions
Address accuracy – provide the full address up front; correcting it later may affect tax or compliance data
Next steps
Confirm the store appears with
GET /Merchants/{id}/locations
Create one or more terminals under the new
locationId
(POST /Terminals
)
Last updated