Create a manual checkpoint (save) of a tab and all its tiles.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The ID of the tab to checkpoint
The interface ID the tab belongs to
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"
}