I create a new table called Test. I created a new column called testcolumn of type INT. I use the REST interface to make the following request.
{
“isolationLevelEnum” : “READ_COMMITTED”,
“operations”: [
{
“operationType”: “CREATE”,
“table”: “Test”,
“payload”: {
“testcolumn”: 5
}
}
]
}
I get the following response
{
“created”: 1644882655000,
“testcolumn”: null,
“___class”: “Test”,
“ownerId”: null,
“updated”: null,
“objectId”: “A6113E0B-3D4E-4A84-B506-4B1D386C94F1”
}
I can never create the right value in the testcolumn. I have tested both int and string column types.
Also tried this by calling REST endpoint from python script - same problem. Am I setting up table wrong? Can you replicate?
Thanks