Get a Table Info

get/kvservice.describetable/{tableName}

Retrieves primary keys, column names, column types, and indexes of the specified table.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
tableName
required
string

A name of the table you want to retrieve information about.

Responses
200

OK

Response Schema: application/json
object
node
string
Array of objects
Array
primary_keys
Array of strings
indexes
Array of objects
columns
Array of strings
status
integer
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "node",
    • "data": [
      • {
        • "primary_keys": [
          ],
        • "indexes": [ ],
        • "columns": [
          ]
        }
      ],
    • "status": 0
    }
}