Get Location
GET /v2/tms-api/locations/{external_reference_id}
Retrieve details for a specific location using its external reference ID.
API Reference
Request Examples
bash
curl -X GET "https://api.mentium.io/v2/tms-api/locations/LOC-CHICAGO-001" \
-H "X-API-Key: your_api_key_here"python
import requests
response = requests.get(
"https://api.mentium.io/v2/tms-api/locations/LOC-CHICAGO-001",
headers={"X-API-Key": "your_api_key_here"}
)
print(response.json())