Method | HTTP request | Description ------------- | ------------- | ------------- create | POST /type/{type_id}/credential | delete | DELETE /type/{type_id}/credential/{access_key} | list | GET /type/{type_id}/credential | update | PUT /type/{type_id}/credential/{access_key} |
object create(type.id, body)
library(LAMP)
var.type.id <- 'type.id_example' # character |
var.body <- NULL # object |
result <- LAMP.Credential$create(var.type.id, var.body)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- type.id | character| | body | object| |
object
application/json
application/json
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | 200 Success | - | | 400 | 400 Bad Request | - | | 403 | 403 Authorization Failed | - | | 404 | 404 Not Found | - | | 0 | 500 Internal Error | - |
object delete(type.id, access.key)
library(LAMP)
var.type.id <- 'type.id_example' # character |
var.access.key <- 'access.key_example' # character |
result <- LAMP.Credential$delete(var.type.id, var.access.key)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- type.id | character| | access.key | character| |
object
application/json
application/json
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | 200 Success | - | | 400 | 400 Bad Request | - | | 403 | 403 Authorization Failed | - | | 404 | 404 Not Found | - | | 0 | 500 Internal Error | - |
object list(type.id)
library(LAMP)
var.type.id <- 'type.id_example' # character |
result <- LAMP.Credential$list(var.type.id)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- type.id | character| | transform | character| | [optional]
object
application/json
application/json
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | 200 Success | - | | 400 | 400 Bad Request | - | | 403 | 403 Authorization Failed | - | | 404 | 404 Not Found | - | | 0 | 500 Internal Error | - |
object update(type.id, access.key, body)
library(LAMP)
var.type.id <- 'type.id_example' # character |
var.access.key <- 'access.key_example' # character |
var.body <- NULL # object |
result <- LAMP.Credential$update(var.type.id, var.access.key, var.body)
dput(result)
Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- type.id | character| | access.key | character| | body | object| |
object
application/json
application/json
| Status code | Description | Response headers | |-------------|-------------|------------------| | 200 | 200 Success | - | | 400 | 400 Bad Request | - | | 403 | 403 Authorization Failed | - | | 404 | 404 Not Found | - | | 0 | 500 Internal Error | - |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.