Import Assets
Imports asset data to add or update records in a project.
POST /v1/import/assets
See Import & Export for details on the CSV format used for assets. To add a new asset:
name, type
VAV-2, mech.vav
To update an existing asset:
id, general_comments
a.7, Check back in 2 weeks
curl https://api.novant.io/v1/import/assets \
-u ak_sample_123: \
-H "Content-Type: text/csv" \
--data-binary @assets.csvReturns
Returns ok if import was successful.
{ "status": "ok" }