Get the checkpoint (manual save) for a tab by ID or by interface_id and name.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The ID of the tab to get checkpoint for
The interface ID the tab belongs to
The name of the tab to get checkpoint for
curl --request GET \
--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"
}