Configs
List Tabs
- Universal API
- Logging
- Projects
- Project Artifacts
- Contexts
- Context Artifacts
- Logs
- Configs
- POSTCreate Interface
- PUTUpdate Interface
- GETGet Interfaces
- DELDelete Interface
- POSTCreate Interface
- GETGet Interface
- PUTUpdate Interface
- DELDelete Interface
- GETList Interfaces
- POSTCreate Interface Checkpoint
- GETGet Interface Checkpoint
- POSTCreate Tab
- GETGet Tab
- PUTUpdate Tab
- DELDelete Tab
- GETList Tabs
- POSTCreate Tab Checkpoint
- GETGet Tab Checkpoint
- POSTCreate Tile
- GETGet Tile
- PUTUpdate Tile
- DELDelete Tile
- PATCHPatch Tile
- GETList Tiles
- POSTCreate Tile Checkpoint
- GETGet Tile Checkpoint
- PATCHPatch Specialized Tile
- POST
- Account
Configs
List Tabs
GET
/
v0
/
tab
/
list
curl --request GET \
--url 'https://api.unify.ai/v0/tab/list?interface_id=None&name=None&checkpoint=None' \
--header "Authorization: Bearer $UNIFY_KEY"
[
{
"id": "123",
"interface_id": "456",
"name": "my_tab_1",
"visible": true,
"active": true,
"order": 1,
"global_context": {},
"color": "blue",
"is_checkpoint": false,
"tiles": [],
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z"
},
{
"id": "124",
"interface_id": "456",
"name": "my_tab_2",
"visible": true,
"active": false,
"order": 2,
"global_context": {},
"color": "green",
"is_checkpoint": false,
"tiles": [],
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z"
}
]
List all tabs for an interface.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The interface ID to list tabs for
Filter tabs by name
Whether to list checkpoint tabs (manual save)
curl --request GET \
--url 'https://api.unify.ai/v0/tab/list?interface_id=None&name=None&checkpoint=None' \
--header "Authorization: Bearer $UNIFY_KEY"
[
{
"id": "123",
"interface_id": "456",
"name": "my_tab_1",
"visible": true,
"active": true,
"order": 1,
"global_context": {},
"color": "blue",
"is_checkpoint": false,
"tiles": [],
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z"
},
{
"id": "124",
"interface_id": "456",
"name": "my_tab_2",
"visible": true,
"active": false,
"order": 2,
"global_context": {},
"color": "green",
"is_checkpoint": false,
"tiles": [],
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z"
}
]
curl --request GET \
--url 'https://api.unify.ai/v0/tab/list?interface_id=None&name=None&checkpoint=None' \
--header "Authorization: Bearer $UNIFY_KEY"
[
{
"id": "123",
"interface_id": "456",
"name": "my_tab_1",
"visible": true,
"active": true,
"order": 1,
"global_context": {},
"color": "blue",
"is_checkpoint": false,
"tiles": [],
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z"
},
{
"id": "124",
"interface_id": "456",
"name": "my_tab_2",
"visible": true,
"active": false,
"order": 2,
"global_context": {},
"color": "green",
"is_checkpoint": false,
"tiles": [],
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z"
}
]