Get account asset total by ID
GET/account-asset-totals/:id
Retrieve a specific account asset total by its ID
Request
Path Parameters
Account asset total ID
Responses
- 200
- 400
- 401
- 403
- 404
- 409
- 422
Account asset total retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Numeric string representing the settled balance
100000
Numeric string representing contingent holds
0
Numeric string representing non-contingent holds
0
Numeric string representing pending transfers
0
Numeric string representing disbursable amount
0
Numeric string representing settled amount in cold storage
0
Numeric string representing pending transfers in cold storage
0
Numeric string representing non-contingent holds in cold storage
0
Numeric string representing disbursable amount in cold storage
0
Numeric string representing settled amount in hot wallet
0
Numeric string representing pending transfers in hot wallet
0
Numeric string representing non-contingent holds in hot wallet
0
Numeric string representing disbursable amount in hot wallet
0
Numeric string representing pending settlements
0
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"accountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"assetId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"settled": "100000",
"contingentHold": "0",
"nonContingentHold": "0",
"pendingTransfer": "0",
"disbursable": "0",
"settledCold": "0",
"pendingTransferCold": "0",
"nonContingentHoldCold": "0",
"disbursableCold": "0",
"settledHot": "0",
"pendingTransferHot": "0",
"nonContingentHoldHot": "0",
"disbursableHot": "0",
"accountName": "string",
"pendingSettlement": "0",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z"
}
Bad Request - Invalid input data
- application/json
- Schema
- Example (from schema)
Schema
Error message
Detailed error description
Error code
{
"message": "Invalid input data",
"description": "The request data did not pass validation",
"code": "INVALID_INPUT"
}
Unauthorized - Invalid or missing authentication token
- application/json
- Schema
- Example (from schema)
Schema
Error message
Detailed error description
Error code
{
"message": "Unauthorized",
"description": "Invalid, expired or missing bearer token",
"code": "UNAUTHORIZED"
}
Forbidden - Insufficient permissions
- application/json
- Schema
- Example (from schema)
Schema
Error message
Detailed error description
Error code
{
"message": "Forbidden",
"description": "You don't have permission to access this resource",
"code": "FORBIDDEN"
}
Not Found - Resource not found
- application/json
- Schema
- Example (from schema)
Schema
Error message
Detailed error description
Error code
{
"message": "Resource not found",
"description": "The requested resource could not be found",
"code": "NOT_FOUND"
}
Conflict - Resource already exists or state conflict
- application/json
- Schema
- Example (from schema)
Schema
Error message
Detailed error description
Error code
{
"message": "Resource conflict",
"description": "The resource already exists or is in an invalid state",
"code": "CONFLICT"
}
Unprocessable Entity - Validation error
- application/json
- Schema
- Example (from schema)
Schema
Error message
Detailed error description
Error code
{
"message": "Validation error",
"description": "The request data failed validation rules",
"code": "VALIDATION_ERROR"
}