GET
/
v0
/
tab
curl --request GET \
  --url 'https://api.unify.ai/v0/tab/?tab_id=None&interface_id=None&name=None&checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "id": "123",
    "interface_id": "456",
    "name": "my_tab",
    "visible": true,
    "active": true,
    "order": 1,
    "global_context": {},
    "color": "blue",
    "is_checkpoint": false,
    "tiles": [
        {
            "id": "789",
            "tab_id": "123",
            "name": "my_tile",
            "type": "chart",
            "config": {},
            "is_checkpoint": false,
            "created_at": "2024-01-01T12:00:00Z",
            "updated_at": "2024-01-01T12:00:00Z"
        }
    ],
    "created_at": "2024-01-01T12:00:00Z",
    "updated_at": "2024-01-01T12:00:00Z"
}

Get a specific tab by ID or by interface_id and name.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

tab_id
string | null

The ID of the tab to retrieve

interface_id
string | null

The interface ID the tab belongs to

name
string | null

The name of the tab to retrieve

checkpoint
boolean

Whether to get a checkpoint tab (manual save)

curl --request GET \
  --url 'https://api.unify.ai/v0/tab/?tab_id=None&interface_id=None&name=None&checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "id": "123",
    "interface_id": "456",
    "name": "my_tab",
    "visible": true,
    "active": true,
    "order": 1,
    "global_context": {},
    "color": "blue",
    "is_checkpoint": false,
    "tiles": [
        {
            "id": "789",
            "tab_id": "123",
            "name": "my_tile",
            "type": "chart",
            "config": {},
            "is_checkpoint": false,
            "created_at": "2024-01-01T12:00:00Z",
            "updated_at": "2024-01-01T12:00:00Z"
        }
    ],
    "created_at": "2024-01-01T12:00:00Z",
    "updated_at": "2024-01-01T12:00:00Z"
}