Get the latest checkpoint (manual save) for an interface by ID or by project ID and name.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
The ID of the interface to get checkpoint for
The project ID the interface belongs to
The name of the interface to get checkpoint for
curl --request GET \
--url 'https://api.unify.ai/v0/interfaces/checkpoint?interface_id=None&project=None&name=None' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"id": "123",
"name": "my_interface",
"project_id": "proj_abc",
"tabs": [],
"color": "blue",
"is_checkpoint": true,
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z"
}