Jump to
Ctrl
+
/

List Vaults

GET
/vaults/{networkType}

This endpoint allows users to retrieve information about their vaults and provides details about each vault's ID, name, backup status, and type (whether it's a test or main vault).

Path Parameters

networkType string Required

The specific type of the vault - main, test.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-05-09
requestId string Required

Defines the ID of the request. The requestId is generated by Vaultody and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
items array Items (object) Required
backuped boolean Required

Represents whether the Vault is backuped.

true
changeAddressesCount integer Required

The number of change addresses associated with the Vault.

3
color string Required

Represents the color of the Vault.

#2684FF
createdTimestamp integer Required

Defines the specific UNIX time when the Vault was created.

1704881727
depositAddressesCount integer Required

The number of deposit addresses associated with the Vault.

1
id string Required

Defines the unique ID of the Vault.

64d0d39df6762400071440c3
name string Required

Defines the name of the Vault given to it by the user.

Vault name
type string Required

Represents the type of the Vault - main/test.

main
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-05-09",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "items": [
            {
                "backuped": true,
                "changeAddressesCount": 3,
                "color": "#2684FF",
                "createdTimestamp": 1704881727,
                "depositAddressesCount": 1,
                "id": "64d0d39df6762400071440c3",
                "name": "Vault name",
                "type": "main"
            }
        ]
    }
}