Update 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 update
The interface ID the tab belongs to
The name of the tab to update
Whether this is a checkpoint update (manual save)
Body
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 '{}'
{
"id": "123",
"interface_id": "456",
"name": "updated_tab_name",
"visible": true,
"active": true,
"order": 1,
"global_context": {},
"color": "red",
"is_checkpoint": false,
"tiles": [],
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:30:00Z"
}