PUT
/
v0
/
tab
curl --request PUT \
  --url 'https://api.unify.ai/v0/tab?tab_id=None&interface_id=None&name=None&checkpoint=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{}
Update a 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 update
interface_id
string | null
The interface ID the tab belongs to
name
string | null
The name of the tab to update
checkpoint
boolean
default:"false"
Whether this is a checkpoint update (manual save)

Body

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