-1

I am working on a Visual studio console application, which could download or write to the BIM 360 Field Website using REST services.

Currently, I am unable to create a sample project on the BIM 360 website. Kindly, help me in writing a C# function to create a sample project on BIM 360 Field.

Rck7
  • 41
  • 9

1 Answers1

0

You can use BIM 360 admin API to create a project:

https://developer.autodesk.com/en/docs/bim360/v1/reference/http/projects-POST/

with "field" as a service_type parameter.

Mikako Harada
  • 586
  • 1
  • 3
  • 7
  • Thank you. I have gone through it but not able to understand. Is there a sample c# code for creating a project on BIM 360 ? – Rck7 May 24 '17 at 21:02
  • There is no C# sample at the moment unfortunately. This is a REST endpoint, you may need to laern how to perform http requests and work with a REST API if you are not used to. Take a look at RestSharp, a pretty good .Net API: http://restsharp.org. There you can find several samples and adapt it to any other REST API. Hope that helps. – Felipe May 30 '17 at 14:52