Request to Fix 422 Error: JSON Field Order Should Not Cause Update Table Field Values to Fail
I am encountering an issue with the Update Table Field Values REST API. When I change the order of elements in the JSON request body, the API returns a 422 error.Since JSON does not inherently guarantee order, could we request a modification to the implementation?
PUT {{ServerUrl}}/{{Platform}}/FileCabinets/{{FileCabinetId}}/Documents/{{DocumentId}}/Fields
success
{
Field: [
{
FieldName: TEST,
Item: {
$type: DocumentIndexFieldTable,
Row: [
…
]
},
ItemElementName: Table
}
]
}
error
{
Field: [
{
FieldName: TEST,
Item: {
Row: [
…
],
$type: DocumentIndexFieldTable
},
ItemElementName: Table
}
]
}