Hi,
We are looking into API's related to BIM 360.
we are trying to create a new BIM 360 project in a specific BIM 360 account based on the project template
(https://developer.autodesk.com/en/docs/bim360/v1/reference/http/projects-POST/)
{
"name": "TEST",
"service_types": "doc_manager",
"start_date": "2015-05-02",
"end_date": "2016-04-03",
"project_type": "office",
"value": 3000,
"currency": "USD",
"job_number": "0219-01",
"address_line_1": "The Fifth Avenue",
"address_line_2": "#301",
"city": "New York",
"state_or_province": "New York",
"postal_code": "10011",
"country": "United States",
"timezone": "America/New_York",
"language": "en",
"construction_type": "Renovation",
"contract_type": "Design-Bid",
"template_project_id": "9999fddd-9999-9999-999c-fd166369999d",
"include_companies": "true",
"include_locations": "true"
}
"template_project_id": "9999fddd-9999-9999-999c-fd166369999d" - is ID of the existing active project with the folder structure in Document Management.
response JSON:
{
"id": "xxxxx-1065-409a-xxxx-xxxx359778",
"account_id": "xxxxxxxx-eae9-xxxx-xxxx-cd3ad690xxxx",
"name": "TEST",
"start_date": "2015-05-02",
"end_date": "2016-04-03",
"value": 3000,
"currency": "USD",
"status": "pending",
"job_number": "0219-01",
"address_line_1": "The Fifth Avenue",
"address_line_2": "#301",
"city": "New York",
"state_or_province": "New York",
"postal_code": "10011",
"country": "United States",
"business_unit_id": null,
"created_at": "2018-06-15T11:22:42.514Z",
"updated_at": "2018-06-15T11:22:42.514Z",
"project_type": "office",
"timezone": "America/New_York",
"language": "en",
"construction_type": "Renovation",
"contract_type": "Design-Bid",
"last_sign_in": null
}
new project is created!
activation of service (https://developer.autodesk.com/en/docs/bim360/v1/tutorials/activate-service/)
total:
A new project was created using a template (no errors); is activated.
but the new project does not have a folder structure from the template project!!
What are we doing wrong?
Thanks!