I am trying to get a custom REST destination working. I successfully created the REST commection manager, imported from Swagger, and tested the connection successtully after setting up basic authentication via a Bearer Token.
When I run the data flow I get the following error for every row:
[AssetCustomFields [2]] Error: System.Exception:
(1) {"":["Provided property key is not valid for the AssetCustomFieldPatchRequest."]}
...
at CozyRoc.SqlServer.SSIS.RestDestination.#=zoBaoLlNB404t(ArrayList #=zdvMETOXD1lMP, IStatus[] #=zKre1hy0=)
at CozyRoc.SqlServer.SSIS.RestDestination.#=zfAaXwG0=(ArrayList& #=zdvMETOXD1lMP, ArrayList& #=zBX7XLyDYyXEQ)
at CozyRoc.SqlServer.SSIS.RestDestination.#=z$7BNokonuYkv()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at CozyRoc.SqlServer.SSIS.RestDestination.PostExecute()
at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostPostExecute(IDTSManagedComponentWrapper100 wrapper)
The API doc is here:
I have been able to call the same endpoint (AssetCustomFields) using Postman and everything works fine.
Any ideas why this isn't working?
Thanks