Solaris Zones Zone Info API

Read-only zone information and status queries

Operations 1

GET /ZoneInfo Solaris Zones Get Executing Zone Information #

Documentation

📖
Documentation
https://docs.oracle.com/cd/E88353_01/html/E37839/zones.html
📖
Documentation
https://docs.oracle.com/cd/E88353_01/html/E37839/zonecfg-1m.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E61040/
📖
Documentation
https://docs.oracle.com/cd/E88353_01/html/E37839/zoneadm-1m.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E61038/gqhar.html
📖
Documentation
https://docs.oracle.com/cd/E88353_01/html/E37839/zonestat-1.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E61043/gklfb.html
📖
Documentation
https://docs.oracle.com/en/operating-systems/solaris/oracle-solaris/11.4/rad-client/rest-api-reference.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E68270/gpzpd.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E68270/gpzpv.html
📖
Documentation
https://docs.oracle.com/cd/E88353_01/html/E76189/zonemgr-1-3rad.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E61043/
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E61043/gklfn.html
📖
Documentation
https://docs.oracle.com/cd/E23824_01/html/821-1499/gloag.html
📖
Documentation
https://docs.oracle.com/en/operating-systems/solaris/oracle-solaris/11.4/kernel-zones/oracle-solaris-kernel-zones.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E61041/gnzfn.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E56520/index.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E56520/sstoreintro.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E56520/ssids.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E60984/gmrlo.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E60984/gmwen.html
📖
Documentation
https://docs.oracle.com/cd/E37838_01/html/E61039/gpoiu.html

Specifications

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/solaris-zones-zone-info-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

solaris-zones-zone-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Solaris Zones Zone Info API
  version: '1.6'
  contact:
    name: Oracle Solaris Support
    url: https://www.oracle.com/solaris/support/
    email: solaris-support@oracle.com
  description: 'Operations tagged Zone Info across 2 of this provider''s published API definitions: solaris-rad-zonemgr-openapi.yml, solaris-zones-management-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{radserver}/api/com.oracle.solaris.rad.zonemgr/1.6
  description: Oracle Solaris RAD Server
  variables:
    radserver:
      default: radserver.example.com
      description: Hostname or IP of the Solaris RAD server
- url: https://{host}:{port}/api/com.oracle.solaris.rad.zonemgr/1.6
  description: Oracle Solaris RAD REST endpoint for zone management
  variables:
    host:
      default: localhost
      description: Solaris host running RAD
    port:
      default: '6788'
      description: RAD REST API port (default HTTPS)
security:
- cookieAuth: []
tags:
- name: Zone Info
  description: Read-only zone information and status queries
paths:
  /ZoneInfo:
    get:
      operationId: getZoneInfo
      summary: Solaris Zones Get Executing Zone Information
      description: Returns read-only information about the zone in which the RAD daemon is currently executing, including whether it is the global zone.
      tags:
      - Zone Info
      parameters:
      - $ref: '#/components/parameters/radDetail'
      responses:
        '200':
          description: Zone information returned successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                    - success
                  payload:
                    $ref: '#/components/schemas/ZoneInfo'
              examples:
                Getzoneinfo200Example:
                  summary: Default getZoneInfo 200 response
                  x-microcks-default: true
                  value:
                    status: success
                    payload:
                      name: Example Title
                      id: abc123
                      uuid: '500123'
                      brand: example_value
                      isGlobal: true
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    servers:
    - url: https://{radserver}/api/com.oracle.solaris.rad.zonemgr/1.6
      description: Oracle Solaris RAD Server
      variables:
        radserver:
          default: radserver.example.com
          description: Hostname or IP of the Solaris RAD server
components:
  responses:
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                enum:
                - error
              payload:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
    Unauthorized:
      description: Authentication required or session expired
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                enum:
                - error
              payload:
                type: object
                properties:
                  message:
                    type: string
    Unauthorized_2:
      description: Authentication required or session expired
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/RadError'
  parameters:
    radDetail:
      name: _rad_detail
      in: query
      required: false
      description: When present, returns detailed property information for each interface or object in the response.
      schema:
        type: boolean
        default: true
    radDetail_2:
      name: _rad_detail
      in: query
      required: false
      description: When present, returns detailed information including all properties for each interface.
      schema:
        type: boolean
  schemas:
    ZoneInfo:
      type: object
      description: Read-only snapshot of the executing zone information
      properties:
        name:
          type: string
          description: Name of the executing zone
          examples:
          - global
        id:
          type: integer
          description: Numeric zone ID
          examples:
          - 0
        uuid:
          type: string
          format: uuid
          description: Zone UUID
          example: '500123'
        brand:
          type: string
          description: Zone brand type
          examples:
          - solaris
        isGlobal:
          type: boolean
          description: Whether this is the global zone
          examples:
          - true
    ZoneInfo_2:
      type: object
      properties:
        name:
          type: string
          description: Zone name
          example: Example Title
        brand:
          type: string
          description: Zone brand type
          example: example_value
        id:
          type: integer
          description: Numeric zone ID
          example: abc123
        uuid:
          type: string
          format: uuid
          description: Zone UUID
          example: '500123'
        isGlobal:
          type: boolean
          description: Whether this is a global zone
          example: true
    RadError:
      type: object
      properties:
        status:
          type: string
          example: failure
        payload:
          type: object
          properties:
            code:
              type: integer
              description: Error code
            message:
              type: string
              description: Error message
          example: example_value
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: _rad_cookie
      description: RAD session cookie obtained through authentication. Use the RAD authentication endpoint to establish a session and obtain the cookie.
x-refined-from:
- solaris-rad-zonemgr-openapi.yml
- solaris-zones-management-openapi.yml