All URIs are relative to http://localhost/v1
Method | HTTP request | Description ------------- | ------------- | ------------- AddArrayFavorite | POST /arrays/favorites | AddMLModelFavorite | POST /mlmodels/favorites | AddNotebookFavorite | POST /notebooks/favorites | AddUDFFavorite | POST /udfs/favorites | DeleteArrayFavorite | DELETE /arrays/favorites/{id} | DeleteMLModelFavorite | DELETE /mlmodels/favorites/{id} | DeleteNotebookFavorite | DELETE /notebooks/favorites/{id} | DeleteUDFFavorite | DELETE /udfs/favorites/{id} | GetArrayFavorite | GET /arrays/favorites/{id} | GetArrayFavoriteForArray | GET /arrays/favorites/{namespace}/{name} | GetMLModelFavorite | GET /mlmodels/favorites/{id} | GetMLModelFavoriteForMLModel | GET /mlmodels/favorites/{namespace}/{name} | GetNotebookFavorite | GET /notebooks/favorites/{id} | GetNotebookFavoriteForNotebook | GET /notebooks/favorites/{namespace}/{name} | GetUDFFavorite | GET /udfs/favorites/{id} | GetUDFFavoriteForUDF | GET /udfs/favorites/{namespace}/{name} | ListArrayFavorites | GET /arrays/favorites | ListArrayFavoritesUUIDs | GET /arrays/favorites/uuids | ListMLModelFavorites | GET /mlmodels/favorites | ListMLModelFavoritesUUIDs | GET /mlmodels/favorites/uuids | ListNotebookFavorites | GET /notebooks/favorites | ListNotebookFavoritesUUIDs | GET /notebooks/favorites/uuids | ListUDFFavorites | GET /udfs/favorites | ListUDFFavoritesUUIDs | GET /udfs/favorites/uuids |
AddArrayFavorite(body=var.body)
Add a new array favorite
library(tiledbcloud)
var.body <- FavoriteCreate$new("name_example", "namespace_example") # FavoriteCreate |
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$AddArrayFavorite(body=var.body)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- body | FavoriteCreate| | [optional]
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | Item added to favorites successfully | - | | 0 | error response | - |
AddMLModelFavorite(body=var.body)
Add a new ML model favorite
library(tiledbcloud)
var.body <- FavoriteCreate$new("name_example", "namespace_example") # FavoriteCreate |
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$AddMLModelFavorite(body=var.body)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- body | FavoriteCreate| | [optional]
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | Item added to favorites successfully | - | | 0 | error response | - |
AddNotebookFavorite(body=var.body)
Add a new notebook favorite
library(tiledbcloud)
var.body <- FavoriteCreate$new("name_example", "namespace_example") # FavoriteCreate |
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$AddNotebookFavorite(body=var.body)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- body | FavoriteCreate| | [optional]
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | Item added to favorites successfully | - | | 0 | error response | - |
AddUDFFavorite(body=var.body)
Add a new UDF favorite
library(tiledbcloud)
var.body <- FavoriteCreate$new("name_example", "namespace_example") # FavoriteCreate |
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$AddUDFFavorite(body=var.body)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- body | FavoriteCreate| | [optional]
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | Item added to favorites successfully | - | | 0 | error response | - |
DeleteArrayFavorite(id)
Delete specific array favorite
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the array favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$DeleteArrayFavorite(var.id)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the array favorite |
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | Array favorite item deleted successfully | - | | 0 | error response | - |
DeleteMLModelFavorite(id)
Delete specific ML model favorite
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the ML model favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$DeleteMLModelFavorite(var.id)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the ML model favorite |
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | ML model favorite item deleted successfully | - | | 0 | error response | - |
DeleteNotebookFavorite(id)
Delete specific notebook favorite
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the notebook favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$DeleteNotebookFavorite(var.id)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the notebook favorite |
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | Notebook favorite item deleted successfully | - | | 0 | error response | - |
DeleteUDFFavorite(id)
Delete specific UDF favorite
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the UDF favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
api.instance$DeleteUDFFavorite(var.id)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the UDF favorite |
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 204 | UDF favorite item deleted successfully | - | | 0 | error response | - |
ArrayFavorite GetArrayFavorite(id)
Fetch specific array favorite of a user
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the array favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetArrayFavorite(var.id)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the array favorite |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
ArrayFavorite GetArrayFavoriteForArray(namespace, name)
Fetch array favorite of a specific array
library(tiledbcloud)
var.namespace <- 'namespace_example' # character | The namespace of the array
var.name <- 'name_example' # character | The name of the array
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetArrayFavoriteForArray(var.namespace, var.name)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- namespace | character| The namespace of the array | name | character| The name of the array |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
MLModelFavorite GetMLModelFavorite(id)
Fetch specific ML model favorite of a user
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the ML model favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetMLModelFavorite(var.id)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the ML model favorite |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
MLModelFavorite GetMLModelFavoriteForMLModel(namespace, name)
Fetch ML model favorite of a specific ML model
library(tiledbcloud)
var.namespace <- 'namespace_example' # character | The namespace of the ML model
var.name <- 'name_example' # character | The name of the ML model
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetMLModelFavoriteForMLModel(var.namespace, var.name)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- namespace | character| The namespace of the ML model | name | character| The name of the ML model |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
NotebookFavorite GetNotebookFavorite(id)
Fetch specific notebook favorite of a user
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the notebook favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetNotebookFavorite(var.id)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the notebook favorite |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
NotebookFavorite GetNotebookFavoriteForNotebook(namespace, name)
Fetch notebook favorite of a specific notebook
library(tiledbcloud)
var.namespace <- 'namespace_example' # character | The namespace of the notebook
var.name <- 'name_example' # character | The name of the notebook
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetNotebookFavoriteForNotebook(var.namespace, var.name)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- namespace | character| The namespace of the notebook | name | character| The name of the notebook |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
UDFFavorite GetUDFFavorite(id)
Fetch specific UDF favorite of a user
library(tiledbcloud)
var.id <- 'id_example' # character | The uuid of the UDF favorite
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetUDFFavorite(var.id)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- id | character| The uuid of the UDF favorite |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
UDFFavorite GetUDFFavoriteForUDF(namespace, name)
Fetch UDF favorite of a specific UDF
library(tiledbcloud)
var.namespace <- 'namespace_example' # character | The namespace of the UDF
var.name <- 'name_example' # character | The name of the UDF
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$GetUDFFavoriteForUDF(var.namespace, var.name)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- namespace | character| The namespace of the UDF | name | character| The name of the UDF |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | OK | - | | 0 | error response | - |
ArrayFavoritesData ListArrayFavorites(page=var.page, per.page=var.per.page)
Fetch all array favorites of connected user
library(tiledbcloud)
var.page <- 56 # integer | pagination offset
var.per.page <- 56 # integer | pagination limit
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListArrayFavorites(page=var.page, per.page=var.per.page)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- page | integer| pagination offset | [optional] per.page | integer| pagination limit | [optional]
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available array favorites are returned | - | | 0 | error response | - |
array[ArrayFavorite] ListArrayFavoritesUUIDs()
Fetch all favorite array uuids of connected user
library(tiledbcloud)
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListArrayFavoritesUUIDs()
dput(result)
This endpoint does not need any parameter.
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available favorites array uuids are returned | - | | 0 | error response | - |
MLModelFavoritesData ListMLModelFavorites(page=var.page, per.page=var.per.page)
Fetch all ML models favorites of connected user
library(tiledbcloud)
var.page <- 56 # integer | pagination offset
var.per.page <- 56 # integer | pagination limit
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListMLModelFavorites(page=var.page, per.page=var.per.page)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- page | integer| pagination offset | [optional] per.page | integer| pagination limit | [optional]
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available ML models favorites are returned | - | | 0 | error response | - |
array[MLModelFavorite] ListMLModelFavoritesUUIDs()
Fetch all favorite ML models uuids of connected user
library(tiledbcloud)
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListMLModelFavoritesUUIDs()
dput(result)
This endpoint does not need any parameter.
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available favorites ML model uuids are returned | - | | 0 | error response | - |
NotebookFavoritesData ListNotebookFavorites(page=var.page, per.page=var.per.page)
Fetch all notebook favorites of connected user
library(tiledbcloud)
var.page <- 56 # integer | pagination offset
var.per.page <- 56 # integer | pagination limit
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListNotebookFavorites(page=var.page, per.page=var.per.page)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- page | integer| pagination offset | [optional] per.page | integer| pagination limit | [optional]
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available notebook favorites are returned | - | | 0 | error response | - |
array[NotebookFavorite] ListNotebookFavoritesUUIDs()
Fetch all favorite notebook uuids of connected user
library(tiledbcloud)
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListNotebookFavoritesUUIDs()
dput(result)
This endpoint does not need any parameter.
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available favorites notebook uuids are returned | - | | 0 | error response | - |
UDFFavoritesData ListUDFFavorites(page=var.page, per.page=var.per.page)
Fetch all UDF favorites of connected user
library(tiledbcloud)
var.page <- 56 # integer | pagination offset
var.per.page <- 56 # integer | pagination limit
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListUDFFavorites(page=var.page, per.page=var.per.page)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- page | integer| pagination offset | [optional] per.page | integer| pagination limit | [optional]
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available UDF favorites are returned | - | | 0 | error response | - |
array[UDFFavorite] ListUDFFavoritesUUIDs()
Fetch all favorite UDF uuids of connected user
library(tiledbcloud)
api.instance <- FavoritesApi$new()
# Configure API key authorization: ApiKeyAuth
api.instance$apiClient$apiKeys['X-TILEDB-REST-API-KEY'] <- 'TODO_YOUR_API_KEY';
# Configure HTTP basic authorization: BasicAuth
api.instance$apiClient$username <- 'TODO_YOUR_USERNAME';
api.instance$apiClient$password <- 'TODO_YOUR_PASSWORD';
result <- api.instance$ListUDFFavoritesUUIDs()
dput(result)
This endpoint does not need any parameter.
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Available favorites UDF uuids are returned | - | | 0 | error response | - |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.