Place Management
Create Place
API Documentation
Dispatch and Routing
Location
Account Management
Place Management
Reports
Place Management
Create Place
Create a new place.
Available fields: name
, radius
, address
, city
, postalcode
, state
, country_code
, location
REQUEST
POST https://api.hellotracks.com/api/createplace
{
"data": {
"name": "Station 101", // mandatory
"radius": 200, // optional in meter
"address": "Laguna Street 123", // optional
"city": "San Francisco", // optional
"postalcode": "94123, // optional
"state": "CA", // optional
"country_code": "US", // optional
"email": "station@email.com", // optional
"phone": "+14151234567", // optional
"location": {"lat":37.7578149,"lng":-122.5078122} // optional, if not set it will be geocoded
}
}
RESPONSE
{"status":0, "uid" : "<uid-of-created-place>"}