2

I have been successful in following this tutorial in creating a new Project: https://forge.autodesk.com/en/docs/bim360/v1/tutorials/account-admin/create-project/#step-1-create-a-new-project.

However I am unsure of how to change the status of a created Project in BIM360 from active to archived. I have looked around for any documentation on this topic but I haven't found any. Is this action possible and if so, what is the request to perform this?

Nathan Hurley
  • 136
  • 1
  • 1
  • 12

1 Answers1

1

Yes you can PATCH a project and update its status:

curl -v 'https://developer.api.autodesk.com/hq/v1/accounts/e3d5ef8d-5c37-4b9d-925d-1e6d24753ace/projects/aca11a7a-bd17-47cd-ab99-6548d0e6fe25' \
  -X 'PATCH' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer 9ezBnx9Rd5D1xG4KMt6b72T4w0MG' \
  -d '{"status":"archived"}'

See doc here.

Bryan Huang
  • 5,247
  • 2
  • 15
  • 20