Currently, the "metadata" form field expects JSON with the
top-level dictionary "metadata", and then the actual data inside.
The Postman collection doesn't provide that top-level dict which
results in a failed API call when using the Postman request as is.
Issue-ID: MULTICLOUD-1143
Signed-off-by: Igor D.C <igor.duarte.cardoso@intel.com>
Change-Id: I5f0c4b699eb38f7e133e9d3d55eb2a0eda890601
"formdata": [
{
"key": "metadata",
- "value": "{\"name\":\"<string>\",\"description\":\"<string>\",\"userData1\":\"<string>\",\"userData2\":\"<string>\"}",
+ "value": "{\"metadata\":{\"name\":\"<string>\",\"description\":\"<string>\",\"userData1\":\"<string>\",\"userData2\":\"<string>\"}}",
"type": "text"
},
{
}
],
"protocolProfileBehavior": {}
-}
\ No newline at end of file
+}