Get Wallet by ID
GET/operations/wallets/:id
Retrieve detailed information about a wallet by specifying its ID.
Request
Path Parameters
id stringrequired
Wallet id.
Header Parameters
nonce stringrequired
The nonce ID is a UUID (v4) used to uniquely identify the requisition. All requisitions must have an identifier.
Responses
- 200
- 400
- 401
- 422
The wallet returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
Wallet id.
name stringrequired
Wallet name.
default booleanrequired
Wallet default flag.
state stringrequired
Possible values: [pending
, active
, deactivate
]
Wallet state.
permission_types string[]required
Wallet permission type that defines what the user can do.
owner_id stringrequired
Wallet owner id.
owner_name stringrequired
Wallet owner name.
created_at date-timerequired
Wallet created at.
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"name": "BTC",
"default": false,
"state": "active",
"permission_types": [
"CLIENT"
],
"owner_id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"owner_name": "James Bond",
"created_at": "2024-11-22T13:43:07.718Z"
}
If any required params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.
Loading...