Get Location
Retrieves the full details of a single location, including address, tender-type settings, and current metadata.
Endpoint
GET /Locations/{id}
Path parameters
id
string
✔︎
The locationId
returned when the location was created
Request headers
Authorization
Bearer <access-token>
Accept
application/json
Example request
Successful response — 200
id
The unique locationId
created
, updated
ISO-8601 timestamps (UTC)
merchantId
Parent merchant
name
Friendly display name
tenderTypes
Enabled rails (inherits from merchant if empty)
maxTransactionAmount
Hard ceiling in minor units (0
= no limit)
address.*
Full postal address object
terminals
Array of brief terminal summaries under this location
Error responses
404
Location {id}
does not exist or is not visible to your token
Best practices
Cache the response client-side to avoid redundant calls when rendering dashboards
Use the
updated
timestamp to determine if you need to refresh local copiesIf
terminals
grows large, callGET /Locations/{id}/terminals
for paginated results |
Related endpoints
Update Location –
PUT /Locations/{id}
to modify fieldsDelete Location –
DELETE /Locations/{id}
when decommissioning a storeList Locations –
GET /Merchants/{id}/locations
for a collection view
Last updated