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 '{}'
{}
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
default:"false"
Whether to create a checkpoint tab (manual save)

Body

name
string
required
visible
boolean
default:"true"
active
boolean
default:"false"
order
integer | null
global_context
string | null
color
string | null
icon
string | null
tab_id
string | null
interface_id
string
required
curl --request POST \
  --url 'https://api.unify.ai/v0/tab?checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{}