List

List all available data tables.

Request

POST https://uni.cloudplan.biz/api/tables/list

{
}

Reply

{
    "result": true,
    "docs": [...]
}

Example

REQUEST:
{
}

REPLY:
{
    "result": true,
    "docs": [
        {
            "org_id": "56A23D908AD3312676D3D9DF9099A5C9",
            "user_id": "56A23EB6998F303B134C1C0A723447B0",
            "table_id": "5FB3A0FC19C59421F28DE0E80F79170A",
            "name": "firsttable",
            "is_large_table": false
        },
        {
            "org_id": "56A23D908AD3312676D3D9DF9099A5C9",
            "user_id": "56A23EB6998F303B134C1C0A723447B0",
            "table_id": "5FB653A628D051F001661ED2DA3DFA29",
            "name": "another table",
            "is_large_table": false
        }
    ]
}