Skip to main content
POST
/
platform
/
admin
/
metafactory
/
deploy
/
{id}
/
status
cURL
curl --request POST \
  --url https://api.example.com/platform/admin/metafactory/deploy/{id}/status \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

id
integer<int64>
required

Query Parameters

api-version
string | null

Body

application/json

Represents a request payload for updating the status of a meta factory deployment step.

metafactoryId
integer<int64>

Identifier of the meta factory deployment to update.

Example:

1

transactionType
enum<string>

Type of deployment transaction that was executed (Proxy, Attestation, or Initialize).

Available options:
Proxy,
Attestation,
Initialize
Example:

"Proxy"

transactionHash
string | null

Transaction hash of the executed transaction, if available.

Example:

"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"

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.