Identifier of the tenant.
Request containing smart contract template and deployment configuration.
Base class for all API request models.
Request model for invoking a smart contract method with typed parameters.
{
"name": "mint",
"parameters": [
{
"name": "to",
"value": "0x1234567890abcdef1234567890abcdef12345678",
"blockchainType": "address",
"blockchainName": "Ethereum",
"order": 0,
"fields": []
},
{
"name": "amount",
"value": "1000000000000000000",
"blockchainType": "uint256",
"blockchainName": "Ethereum",
"order": 1,
"fields": []
}
],
"caller": null
}Token series creation initiated 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.
{ "deploymentTaskCreated": true }