Hi Dieter,
Those limits change over time, so the 5000 one is probably outdated.
I remember having the 5000 limit in the past by default, and at the time it was also possible to get to 10000, but we needed to request this to Genesys through a case, etc.
I believe that by default this has now been increased to 10000.
If you want to make sure on which limit you have on your organization, you can check that through API:
GET /api/v2/organizations/limits/namespaces/datatables
This one should return to you something like:
{
"entities": [
{
"key": "rows.max.per.table.allowed",
"value": 10000
},
{
"key": "rows.rate.per.minute",
"value": 5000
},
{
"key": "tables.max.allowed",
"value": 300
}
]
}
------------------------------
Marcello Jabur
------------------------------