Get account by id
GET/v1/accounts/:account_id
Get account by id
The get_account_by_id endpoint retrieves detailed information about a specific account identified by its unique ID. Optionally, it can also return associated cryptocurrency coins if requested. This endpoint supports caching mechanisms to enhance performance and reduce load times.
Request
Path Parameters
account_id uuidrequired
Account id
Query Parameters
coins boolean
Get account coins
Responses
- 200
- 400
- 404
- 500
Ok
- application/json
- Schema
- Example (from schema)
Schema
activeThisMonth booleannullable
address stringrequired
approversQuantity int32nullable
chainPath stringrequired
createdAt date-timerequired
exchangeApiKey stringnullable
exchangeApiSecret stringnullable
id uuidrequired
isActive booleanrequired
isImported booleanrequired
name stringrequired
transactionLimit stringrequired
type stringrequired
walletId uuidrequired
{
"activeThisMonth": true,
"address": "string",
"approversQuantity": 0,
"chainPath": "string",
"createdAt": "2024-09-25T19:42:12.244Z",
"exchangeApiKey": "string",
"exchangeApiSecret": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"isActive": true,
"isImported": true,
"name": "string",
"transactionLimit": "string",
"type": "string",
"walletId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
Bad Request
- application/json
- Schema
Schema
string
Not Found
- application/json
- Schema
Schema
string
Internal Server Error
- application/json
- Schema
Schema
string
Loading...