openapi: 3.0.3 info: title: ExtremeCloud IQ Account Geo-View API description: 'ExtremeCloud IQ™ API allows customers and partners to create solutions for the management, monitoring, and provisioning of any ExtremeCloud IQ™ environment. All related resources and documentation are available at [ExtremeCloud IQ Developer Portal](https://developer.extremecloudiq.com/). Please check [Get Started and Tutorial](https://developer.extremecloudiq.com/documentation/) to understand how to use the APIs. Get the [latest OpenAPI definition](https://github.com/extremenetworks/ExtremeCloudIQ-OpenAPI/blob/main/xcloudiq-openapi.yaml) from [ExtremeCloud IQ OpenAPI GitHub repository](https://github.com/extremenetworks/ExtremeCloudIQ-OpenAPI). Please have a valid [ExtremeCloud IQ](https://extremecloudiq.com/) account before getting started. If you don''t have one, please [register a new account](https://www.extremenetworks.com/cloud-networking/).' termsOfService: https://www.extremenetworks.com/company/legal/terms-of-use/ contact: name: Extreme Networks Support url: https://www.extremenetworks.com/support email: support@extremenetworks.com license: name: Apache 2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html version: 25.9.0-36 servers: - url: https://api.extremecloudiq.com description: ExtremeCloud IQ REST API Server tags: - name: Geo-View description: Geo View paths: /geo-view: get: tags: - Geo-View summary: Geo View Data description: Geo View hierarchical data. externalDocs: description: API Reference url: https://extremecloudiq.com/api-docs/api-reference.html#_geo_view operationId: geoView responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/GeoViewNode' default: $ref: '#/components/responses/ErrorResponse' security: - BearerAuth: [] components: schemas: XiqErrorParams: type: object description: Error parameters properties: field: type: string description: The error field value: type: string description: The error value XiqError: type: object properties: error_code: type: string description: The error code error_id: type: string description: The error ID for internal troubleshooting error_message: type: string description: The error detailed message error_message_code: type: string description: The error message code error_message_description: type: string description: The error message description error_params: $ref: '#/components/schemas/XiqErrorParams' required: - error_code - error_id - error_message GeoViewNode: type: object description: The Geo View data properties: folder_id: type: integer format: int64 folder_type: type: string description: The node type folder_name: type: string description: The name of the Node total_children: type: integer format: int64 description: Total number of children total_unhealthy_children: type: integer format: int64 description: Total number of unhealthy children folders: type: array description: Array of Child nodes items: $ref: '#/components/schemas/GeoViewNode' responses: ErrorResponse: description: The generic ExtremeCloud IQ API error response content: application/json: schema: $ref: '#/components/schemas/XiqError' securitySchemes: BearerAuth: type: http description: JSON Web Token (JWT) based authentication scheme: bearer bearerFormat: JWT externalDocs: description: API Reference url: https://extremecloudiq.com/api-docs/api-reference.html