readOneVault
GET/api/v1/vaults/:id/
Get a Vault by id
Request
Path Parameters
id stringrequired
Responses
- 200
- 404
Default Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
error booleanrequired
Possible values: [false
]
statusCode numberrequired
Possible values: [200
]
data objectrequired
id stringrequired
name stringrequired
publicKey stringrequired
projectId stringrequired
blockchains object[]required
blockchainId numberrequired
balance stringrequired
{
"error": false,
"statusCode": 200,
"data": {
"id": "string",
"name": "string",
"publicKey": "string",
"projectId": "string",
"blockchains": [
{
"blockchainId": 0,
"balance": "string"
}
]
}
}
Default Response
- application/json
- Schema
- Example (from schema)
Schema
error booleanrequired
Possible values: [true
]
statusCode numberrequired
Possible values: [404
]
code stringrequired
Possible values: [errors.vault.notFound
]
data required
{
"error": true,
"statusCode": 404,
"code": "errors.vault.notFound",
"data": {}
}
Loading...