When I executed a WorkItem, I have this error:
[07/18/2019 09:24:00] Error: Non-optional output [outputFile.dwg] is missing .
[07/18/2019 09:24:00] Error: An unexpected error happened during phase Publishing of job.
In Activity I have the follow code:
"outputFile": {
"zip": false,
"ondemand": false,
"verb": "put",
"description": "output file",
"localName": "outputFile.dwg",
"required": "true"
}
And in WorkItem
:
"outputFile": {
"url": "https://developer.api.autodesk.com/oss/v2/buckets/{{ TokenKey}}/objects/outputFile.dwg",
"headers": {
"Authorization": "Bearer {{ oAuthToken }}",
"Content-type": "application/octet-stream"
},
"verb": "put"
},
What may be change?