Import Zones
Imports zone data to add or update records in a project.
POST /v1/import/zones
Content
See Import & Export for details on the CSV format used for zones. To add a new zone:
name, type
Zone A, hvac
To update an existing zone:
id, parent_zone_id
z.2, z.1
curl https://api.novant.io/v1/import/zones \
-X POST \
-u ak_sample_123: \
-H "Content-Type: text/csv" \
--data-binary @zones.csvReturns
Returns ok if import was successful.
{ "status": "ok" }