All URIs are relative to http://localhost
Method | HTTP request | Description ------------- | ------------- | ------------- Error | GET /error | An error status endpoint for load balancing purposes Health | GET /health | A health status endpoint for load balancing purposes Status | GET /status | An orchestrated status check that includes a health report of underlying systems
Error()
An error status endpoint for load balancing purposes
library(openapi)
#An error status endpoint for load balancing purposes
api.instance <- StatusApi$new()
# Configure OAuth2 access token for authorization: googleoauth
api.instance$apiClient$accessToken <- 'TODO_YOUR_ACCESS_TOKEN';
api.instance$Error()
This endpoint does not need any parameter.
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 503 | Service Unavailable | - |
Health()
A health status endpoint for load balancing purposes
library(openapi)
#A health status endpoint for load balancing purposes
api.instance <- StatusApi$new()
# Configure OAuth2 access token for authorization: googleoauth
api.instance$apiClient$accessToken <- 'TODO_YOUR_ACCESS_TOKEN';
api.instance$Health()
This endpoint does not need any parameter.
void (empty response body)
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | Success | - |
SystemStatus Status()
An orchestrated status check that includes a health report of underlying systems
library(openapi)
#An orchestrated status check that includes a health report of underlying systems
api.instance <- StatusApi$new()
# Configure OAuth2 access token for authorization: googleoauth
api.instance$apiClient$accessToken <- 'TODO_YOUR_ACCESS_TOKEN';
result <- api.instance$Status()
dput(result)
This endpoint does not need any parameter.
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | This service is healthy; check payload for subsystem health. | - | | 500 | This service is not healthy; therefore, payload may be missing or incomplete. | - |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.