Skip to main content
GET
/
platform
/
admin
/
metafactory
/
deploy
cURL
curl --request GET \
  --url https://api.example.com/platform/admin/metafactory/deploy
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Query Parameters

BlockchainId
integer<int64>

Identifier of the blockchain where the meta factory will be deployed.

Example:

137

TenantId
integer<int64>

Identifier of the tenant that will own the meta factory deployment.

Example:

1024

AuditRegistryId
integer<int64>

Identifier of the audit registry implementation to be used for the meta factory.

Example:

1

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.