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

Create a manual checkpoint (save) of a tab and all its tiles.

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 checkpoint

interface_id
string | null

The interface ID the tab belongs to

name
string | null

The name of the tab to checkpoint

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