Skip to main content

Get list of key-value stores

GET 

/v2/key-value-stores

Gets the list of key-value stores owned by the user.

The response is a list of objects, where each objects contains a basic information about a single key-value store.

The endpoint supports pagination using the limit and offset parameters and it will not return more than 1000 array elements.

By default, the records are sorted by the createdAt field in ascending order, therefore you can use pagination to incrementally fetch all key-value stores while new ones are still being created. To sort the records in descending order, use the desc=1 parameter.

Request

Query Parameters

    offset double

    Number of records that should be skipped at the start. The default value is 0.


    Example: 10
    limit double

    Maximum number of records to return. The default value as well as the maximum is 1000.


    Example: 99
    desc boolean

    If true or 1 then the objects are sorted by the startedAt field in descending order. By default, they are sorted in ascending order.


    Example: true
    unnamed boolean

    If true or 1 then all the stores are returned. By default, only named key-value stores are returned.


    Example: true
    ownership StorageOwnership

    Possible values: [ownedByMe, sharedWithMe]

    Filter by ownership. If this parameter is omitted, all accessible key-value stores are returned.

    • ownedByMe: Return only key-value stores owned by the user.
    • sharedWithMe: Return only key-value stores shared with the user by other users.

    Example: ownedByMe

Status 200

Response Headers
    {
    "data": {
    "items": [
    {
    "id": "WkzbQMuFYuamGv3YF",
    "name": "d7b9MDYsbtX5L7XAj",
    "userId": "BPWDBd7Z9c746JAnF",
    "username": "janedoe",
    "createdAt": "2019-12-12T07:34:14.202Z",
    "modifiedAt": "2019-12-13T08:36:13.202Z",
    "accessedAt": "2019-12-14T08:36:13.202Z",
    "actId": null,
    "actRunId": null
    },
    {
    "id": "YiKoxjkaS9gjGTqhF",
    "name": "eshop-items",
    "userId": "BPWDBd7Z9c746JAnF",
    "username": "janedoe",
    "createdAt": "2019-12-12T07:34:14.202Z",
    "modifiedAt": "2019-12-13T08:36:13.202Z",
    "accessedAt": "2019-12-14T08:36:13.202Z",
    "actId": null,
    "actRunId": null
    }
    ]
    }
    }