Manage your saved locations for easier work order creation.
Instead of sending full address details with every work order creation request, you can save Locations in your address book and reference them by ID.
POST /locations
{
"name": "Headquarters",
"notes": "Main entrance is around the back.",
"address1": "730 2nd Ave S",
"city": "Minneapolis",
"state": "MN",
"zip": "55402",
"country": "US"
}GET /locations
You can search for locations by name or address properties.
When creating a work order, simply provide the location_id.
{
"title": "Fix Server at HQ",
"location": {
"mode": "saved",
"id": 12345
}
}Consistency: Using saved locations ensures address data is consistent across all work orders for a specific site, which helps with reporting and history tracking.
Last updated on