Represents the payload used to synchronize custodian mappings for a blockchain.
Identifier of the blockchain whose custodian mapping should be updated.
42
Collection of custodian mappings that should be associated with the blockchain.
[
{
"Id": 7,
"BlockchainId": 42,
"Provider": "CustodianProvider.Fireblocks",
"CustodianBlockchainIdentifier": "eth-sepolia",
"CustodianBlockchainName": "Ethereum Sepolia"
}
]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.
{ "success": true }