The Custom Entity Store lets you store data in custom entities, which are data structures you can define according to your app's needs. Custom entities let you assign multiple values (or "attributes") to a single key (or "entity") and define indexes to optimize queries against these values.
Gets a custom entity value by key.
string
Requiredstring
RequiredSuccessfully retrieved the value corresponding to the key and the entity
1
2
3
4
5
6
7
8
curl --request POST \
--url 'https://api.atlassian.com/forge/storage/kvs/v1/entity/get' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"key": "<string>",
"entityName": "<string>"
}'
1
2
3
4
5
{
"key": "<string>",
"value": {},
"entityName": "<string>"
}
Stores a JSON value with a specified key, for the selected entity.
string
Requiredobject
Requiredstring
RequiredSuccessfully set the value to the corresponding key and the entity
1
2
3
4
5
6
7
8
curl --request POST \
--url 'https://api.atlassian.com/forge/storage/kvs/v1/entity/set' \
--header 'Content-Type: application/json' \
--data '{
"key": "<string>",
"value": {},
"entityName": "<string>"
}'
Deletes a value by key, for the selected entity.
string
Requiredstring
RequiredSuccessfully deleted the key and the corresponding value of the entity
1
2
3
4
5
6
7
curl --request POST \
--url 'https://api.atlassian.com/forge/storage/kvs/v1/entity/delete' \
--header 'Content-Type: application/json' \
--data '{
"key": "<string>",
"entityName": "<string>"
}'
Retrieves custom entities matching the provided list of criteria using query conditions. See Querying the Custom Entity Store for more information about building complex queries.
string
Requiredstring
Requiredarray<anyOf [string, number, boolean]>
object
oneOf [AndFilterSchema, OrFilterSchema]
string
string
integer
Successfully retrieved the data from storage for an entity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
curl --request POST \
--url 'https://api.atlassian.com/forge/storage/kvs/v1/entity/query' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"entityName": "<string>",
"indexName": "<string>",
"partition": [
"<string>"
],
"range": {
"condition": "BEGINS_WITH",
"values": [
"<string>"
]
},
"filters": {},
"sort": "ASC",
"cursor": "<string>",
"limit": 2154
}'
1
2
3
4
5
6
7
8
9
{
"cursor": "<string>",
"data": [
{
"key": "<string>",
"value": "<string>"
}
]
}
Rate this page: