Retrieve location
GET
/v2/locations/{location_id}
Retrieves details of a single location.
Specify "main" as the location ID to retrieve details of the main location.
Name | Description |
---|---|
location_
Required
|
The ID of the location to retrieve. Specify the string "main" to return the main location. |
Response Fields
Name | Description |
---|---|
errors
|
Information about errors encountered during the request. |
location
|
The requested location. |
Examples
GET
/v2/locations/{location_id}
cURL
- cURL
- Ruby
- Python
- C#
- Java
- PHP
- Node.js
curl https://connect.squareup.com/v2/locations/18YC4JDH91E1H \
-H 'Square-Version: 2023-01-19' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
-H 'Content-Type: application/json'
Response JSON
{
"location": {
"id": "18YC4JDH91E1H",
"name": "Grant Park",
"address": {
"address_line_1": "123 Main St",
"locality": "San Francisco",
"administrative_district_level_1": "CA",
"postal_code": "94114",
"country": "US"
},
"timezone": "America/Los_Angeles",
"capabilities": [
"CREDIT_CARD_PROCESSING"
],
"status": "ACTIVE",
"created_at": "2016-09-19T17:33:12Z",
"merchant_id": "3MYCJG5GVYQ8Q",
"country": "US",
"language_code": "en-US",
"currency": "USD",
"phone_number": "+1 650-354-7217",
"business_name": "Jet Fuel Coffee"
}
}