All URIs are relative to http://localhost
Method | HTTP request | Description ------------- | ------------- | ------------- GeneralNotifications | GET /api/notifications/general | Gets the general notifications available WorkspaceNotifications | GET /api/notifications/workspace/{workspaceNamespace}/{workspaceName} | Gets the notifications available for a workspace
array[NotificationType] GeneralNotifications()
Gets the general notifications available
library(openapi)
#Gets the general notifications available
api.instance <- NotificationsApi$new()
# Configure OAuth2 access token for authorization: googleoauth
api.instance$apiClient$accessToken <- 'TODO_YOUR_ACCESS_TOKEN';
result <- api.instance$GeneralNotifications()
dput(result)
This endpoint does not need any parameter.
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Success | - |
array[NotificationType] WorkspaceNotifications(workspace.namespace, workspace.name)
Gets the notifications available for a workspace
library(openapi)
var.workspace.namespace <- 'workspace.namespace_example' # character | workspace namespace
var.workspace.name <- 'workspace.name_example' # character | workspace name
#Gets the notifications available for a workspace
api.instance <- NotificationsApi$new()
# Configure OAuth2 access token for authorization: googleoauth
api.instance$apiClient$accessToken <- 'TODO_YOUR_ACCESS_TOKEN';
result <- api.instance$WorkspaceNotifications(var.workspace.namespace, var.workspace.name)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- workspace.namespace | character| workspace namespace | workspace.name | character| workspace name |
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Success | - |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.