I am trying to PUT records into a D360 Govern reference list using the http node in Analyse.
the following code works fine in POSTMAN when copied and pasted from Analyze:
POST /api/v2/assets/3da7196b-4cc5-4b4f-ae59-5a68fb2d5960
HTTP/1.1
Host: masterdatapoc.dev.data3sixty.com
Authorization: key1; key2
Content-Type: application/json
[ { "Fields": { "Code": "3", "Name": "Financial Transactions", "Description": "Financial Transactions" } } ]
I get the following error when pushing this body using Analyze:
{"type":"error","title":"Invalid Enumeration Value in JSON","message":"assets has error: Could not cast or convert from System.String to System.Collections.Generic.List`1[d360.core.entities.AssetInsert]."}
The body is of type "string". Any idea what is causing this?