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

Query Parameters

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

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:
{
"blockchainId": 137,
"blockchainName": "Polygon",
"blockchainIcon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA",
"tenantId": 1024,
"tenantName": "Acme Corporation",
"owners": [
{
"walletTenantId": 2048,
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"walletName": "Main Wallet"
}
],
"guardians": [
{
"walletTenantId": 2049,
"walletAddress": "0x567890abcdef1234567890abcdef1234567890ab",
"walletName": "Guardian Wallet"
}
],
"isIssuerFactoryEnableAvailable": true,
"isIssuerFactoryDisableAvailable": true,
"isPauseIssuerFactoryForHoursAvailable": false
}