Skip to main content
POST
/
tenant
/
{tenantId}
/
issuer_factories
/
owner
/
update
Creates proposal for IssuerFactory owner update
curl --request POST \
  --url https://api.example.com/tenant/{tenantId}/issuer_factories/owner/update \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

tenantId
integer<int64>
required

Body

application/json

Base class for all API request models.

tenantId
integer<int64>

Identifier of the tenant that owns the issuer factory.

Example:

1024

blockchainId
integer<int64>

Identifier of the blockchain where the issuer factory is deployed.

Example:

137

newOwnerWalletTenantId
integer<int64>

Identifier of the wallet tenant that will become the new owner.

Example:

2048

Response

200 - application/json

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.