Updates the asset configuration for a tenant by approving specific assets.
EmbeddedAssetListModel containing:
The unique identifier of the tenant.
Request containing the array of asset identifiers to approve.
Request to update tenant asset configuration by approving assets.
Array of asset identifiers to approve for the tenant.
[1, 2, 3]Asset configuration updated successfully.
Wrapper for API operation results containing success status, error information, and return value.
True if the operation completed successfully, false otherwise.
true
True if the operation failed, false otherwise.
false
Error information returned when the operation fails.
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}The result value returned when the operation is successful.
{
"tenantId": "1024",
"assets": [
{
"id": 1,
"name": "USD Coin",
"symbol": "USDC",
"decimals": 6,
"isAvailable": true
},
{
"id": 2,
"name": "Ethereum",
"symbol": "ETH",
"decimals": 18,
"isAvailable": true
}
]
}