POST
/
v0
/
tab
curl --request POST \
  --url 'https://api.unify.ai/v0/tab/?checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "id": "123",
    "interface_id": "456",
    "name": "my_tab",
    "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"
}

Create a new tab.

Authorizations

Authorization
string
required

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

Query Parameters

checkpoint
boolean

Whether to create a checkpoint tab (manual save)

Body

interface_id
string
required
name
string
required
visible
boolean
default:true
active
boolean
default:false
order
integer
default:0
global_context
string | null
color
string | null
curl --request POST \
  --url 'https://api.unify.ai/v0/tab/?checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "id": "123",
    "interface_id": "456",
    "name": "my_tab",
    "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"
}