storage
0.000001 USD
Delete a secret. If key not found a success response is returned.
keystring
The key to delete
pathstring
Optional path
Request
Response
{}
0.000001 USD
Get a secret by key.
keystring
The key to retrieve
pathstring
Optional path
createdstring
time of creation
keystring
The key e.g foo
pathstring
Path of value e.g bar/baz
updatedstring
time of update
valuestring
The value e.g cat
Request
Response
{
"key": "foo",
"value": "bar"
}
0.000001 USD
List all the available secrets
keysarray
Request
Response
{
"keys": [
"foo"
]
}
0.000001 USD
Set a secret. Overwrites any existing value already set.
keystring
The key to update
pathstring
Optional path e.g bar/baz
valuestring
The value to set
Request
Response
{}