Skip to content

Get an item from a kv store

GET
/api/v2/organizations/{organization}/projects/{project}/kv/{store_id}/items/{key}

Retrieves an item from the KV store. Security Note: If the item was stored as a secret (secret=true), the value will be redacted and returned as ‘[ENCRYPTED]’ for security. Secrets should be accessed directly via the Quant Cloud platform KVStore abstraction.

Authorizations

Parameters

Path Parameters

organization
required
string

Organization identifier

Example
test-org
project
required
string

Project identifier

Example
test-project
store_id
required
string
Example
0000
key
required
string

Responses

200

The request has succeeded.

object
key
string
user-session-123
value
One of:
string

403

Access is forbidden.

object
message
required

Error message

string
The requested resource was not found
error
required

Error flag

boolean
true
{
"message": "The requested resource was not found",
"error": true
}

404

Item not found.

object
message
required

Error message

string
The requested resource was not found
error
required

Error flag

boolean
true
{
"message": "The requested resource was not found",
"error": true
}