Skip to main content
POST
/
platform
/
admin
/
blockchains
/
metafactory
/
metafactory_impl
/
update
/
queue
cURL
curl --request POST \
  --url https://api.example.com/platform/admin/blockchains/metafactory/metafactory_impl/update/queue
{
  "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.

Query Parameters

BlockchainId
integer<int64>

Identifier of the blockchain where the implementation update will occur.

Example:

137

DeployedImplementationId
integer<int64>

Identifier of the deployed implementation to queue for update.

Example:

2

api-version
string | null

Response

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:
{ "success": true }