Hi Frank,
Thanks for your information
I try to get the row using Datalist Query API and I confuse with the return result
{
“Data”: [
{
“TenantID”: “1528618473896022016”,
“AppID”: “41”,
“ListID”: “1655857881962782720”,
“ListDataID”: “1663833337529634816”,
“RowVersion”: “8”,
“Created”: “2023-05-31T09:02:34Z”,
“CreatedBy”: “1589443654662754304”,
“Modified”: “2023-06-08T07:10:40Z”,
“ModifiedBy”: “1536564830136963072”,
“Title”: “Hello 2”,
“Text1”: “”,
“Text2”: “test”,
“Decimal1”: “112”,
“Text6”: “911”,
“Text7”: “”,
“Text8”: “”,
“Text3”: “1656547149878140928”,
“Text4”: “”,
“Text5”: “”,
“Text9”: “”,
“Text10”: “”,
“Text11”: “”,
“Text12”: “b542f2c3-7499-4ff5-a530-9b5bbb7c7057”,
“Datetime1”: “2023-05-01”,
“Text13”: “”,
“Text14”: “”,
“Text15”: “”
}
],
“Status”: 0,
“Message”: null,
“TotalCount”: 1
}
The return result states that the RowVersion is 8.0 but I found the latest version in YeeFlow Version History is not 8
Then I use the below data for Datlist Patch API can successfully patch the row
{
“RowVersion”: 8,
“Data”: {
“Decimal1”: “999”
}
}
But the latest RowVersion is still less then 8
If I try to update the previous version, say 5, it return below result
{
“Data”: null,
“Status”: 540010,
“Message”: “version not equals”,
“TotalCount”: 0
}
May I know if is it impossible to update the previous version?
Thanks a lot