I'm trying to convert .nwc file uploaded on my A360 account with ModelDerivativeAPI with this method. While converting to svf and some other formats works for me perfectly I have troubles with converting to obj format. I keep getting the following 400 error:
{ "diagnostic": "Failed to trigger translation for this file." }
Here is the body of my POST request:
{
"input": {
"urn": "dXJuOmFkc2sud2lwcHJvZDpmcy5maWxlOnZmLjJFZWM1RzZsU1NXMXNnVmFUSW93Zmc_dmVyc2lvbj0x"
},
"output": {
"formats": [
{
"type": "obj"
}
]
}
}
What am I doing wrong?
Try to add the
advanced
field as follow:You can use my sample https://oss.autodesk.io which exposes a UI to help you test and format the payloads:
Hope that helps