GET
/
tables
/
{tableUUID}
Retrieve table
curl --request GET \
  --url https://api.fluxend.app/tables/{tableUUID} \
  --header 'Authorization: <authorization>' \
  --header 'X-Project: <x-project>'
{
  "content": {
    "estimatedRows": 123,
    "id": 123,
    "name": "<string>",
    "schema": "<string>",
    "totalSize": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

X-Project
string
required

Project UUID

Path Parameters

tableUUID
string
required

Table UUID

Response

200
application/json

Table details

The response is of type object.