Skip to main content
POST
/
tenant
/
{tenantId}
/
blockchain_interaction
/
token_deployment_result
Retrieves the deployment result for a token deployment operation using the deployment transaction public identifier.
curl --request POST \
  --url https://api.example.com/tenant/{tenantId}/blockchain_interaction/token_deployment_result \
  --header 'Content-Type: application/json' \
  --data '
{
  "tenantId": 1024,
  "tokenConfigurationId": 512,
  "blockchainId": 137
}
'
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.numium.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

Body

application/json

Request containing the deployment transaction public identifier.

Request parameters for retrieving the status and result of a token deployment operation.

tenantId
integer<int64>

Identifier of the tenant that owns the token configuration.

Example:

1024

tokenConfigurationId
integer<int64>

Identifier of the token configuration being deployed.

Example:

512

blockchainId
integer<int64>

Identifier of the blockchain network where the token is being deployed.

Example:

137

Response

200 - application/json

Deployment result retrieved successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
  "code": "ValidationError",
  "message": "The request parameters failed validation.",
  "info": [
    "The Name field is required.",
    "The Id field must be greater than 0."
  ]
}
value
object

The result value returned when the operation is successful.

Example:
{
  "status": "Completed",
  "result": {
    "blockchainId": 137,
    "deployedTokenConfigurationId": 2048,
    "network": "Polygon Mainnet",
    "networkIcon": "iVBORw0KGgoAAAANSUhEUgAAAAUA",
    "token": "USDC Token"
  },
  "errorMessage": null,
  "submittedTimestamp": "2025-01-15T14:30:00Z",
  "completedTimestamp": "2025-01-15T14:35:42Z",
  "transactionProposalId": 1001
}