Novant

Documentation

Import Spaces

Imports space data to add or update records in a project.

POST /v1/import/spaces

See Import & Export for details on the CSV format used for spaces. To add a new space:

name, type
New Space, floor

To update an existing space:

id, description
sp.5, Room gets warm in the afternoon
curl https://api.novant.io/v1/import/spaces \
  -u ak_sample_123: \
  -H "Content-Type: text/csv" \
  --data-binary @spaces.csv

Returns

Returns ok if import was successful.

{ "status": "ok" }