Platform
Forge / Reference / KVS/Custom Entity Store API

The Key-Value Store provides simple storage for key/value pairs. Use this to persistently store data that you'd like to retrieve through the Query operation.

POST

Get value by key

Gets a value by key.

Request

Request bodyapplication/json

key

string

Required

Responses

Successfully retrieved the value corresponding to the key

application/json

KeyValueSchema
POST/v1/get
1 2 3 4 5 6 7 curl --request POST \ --url 'https://api.atlassian.com/forge/storage/kvs/v1/get' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "key": "<string>" }'
200Response
1 2 3 4 { "key": "<string>", "value": "<string>" }
POST

Set value by key

Stores a JSON value with a specified key. Forge resolves write conflicts using a last-write-wins strategy.

Request

Request bodyapplication/json

key

string

Required
value

oneOf [string, boolean, number, array<undefined>, object]

Required

Responses

Successfully set the value to the corresponding key

POST/v1/set
1 2 3 4 5 6 7 curl --request POST \ --url 'https://api.atlassian.com/forge/storage/kvs/v1/set' \ --header 'Content-Type: application/json' \ --data '{ "key": "<string>", "value": "<string>" }'
POST

Delete value by key

Deletes a value by key. Write conflicts are resolved using a last-write-wins strategy.

Request

Request bodyapplication/json

key

string

Required

Responses

Successfully deleted the key and the corresponding value

POST/v1/delete
1 2 3 4 5 6 curl --request POST \ --url 'https://api.atlassian.com/forge/storage/kvs/v1/delete' \ --header 'Content-Type: application/json' \ --data '{ "key": "<string>" }'
POST

Query key-value pairs

Retrieve key-value pairs matching the provided list of criteria. This method does not return secret values set by Set secret value.

Request

Request bodyapplication/json

limit

number

after

string

where

array<WhereCondition>

Responses

Successfully retrieved the data from storage

application/json

QueryResponseSchema
POST/v1/query
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 curl --request POST \ --url 'https://api.atlassian.com/forge/storage/kvs/v1/query' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "limit": 2154, "after": "<string>", "where": [ { "condition": "BEGINS_WITH", "property": "key", "values": [ "<string>" ] } ] }'
200Response
1 2 3 4 5 6 7 8 9 { "cursor": "<string>", "data": [ { "key": "<string>", "value": "<string>" } ] }
POST

Get secret value by key

Gets a value by key, which was stored using Set secret value by key. The value is decrypted before being returned.

Request

Request bodyapplication/json

key

string

Required

Responses

Successfully retrieved the decrypted value corresponding to the key

application/json

KeyValueSchema
POST/v1/secret/get
1 2 3 4 5 6 7 curl --request POST \ --url 'https://api.atlassian.com/forge/storage/kvs/v1/secret/get' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "key": "<string>" }'
200Response
1 2 3 4 { "key": "<string>", "value": "<string>" }
POST

Set secret value by key

Store sensitive credentials in JSON format, with encryption. Values set with this method can only be accessed with Get secret value by key. Write conflicts are resolved using a last-write-wins strategy.

Request

Request bodyapplication/json

key

string

Required
value

oneOf [string, boolean, number, array<undefined>, object]

Required

Responses

Successfully set the value to the corresponding key with encryption

POST/v1/secret/set
1 2 3 4 5 6 7 curl --request POST \ --url 'https://api.atlassian.com/forge/storage/kvs/v1/secret/set' \ --header 'Content-Type: application/json' \ --data '{ "key": "<string>", "value": "<string>" }'
POST

Delete secret value by key

Deletes a secret value by key.

Request

Request bodyapplication/json

key

string

Required

Responses

Successfully deleted the key and the corresponding encrypted value

POST/v1/secret/delete
1 2 3 4 5 6 curl --request POST \ --url 'https://api.atlassian.com/forge/storage/kvs/v1/secret/delete' \ --header 'Content-Type: application/json' \ --data '{ "key": "<string>" }'

Rate this page: