Graphiant Global API

The Global API from Graphiant — 43 operation(s) for global.

Operations 56

PATCH /v1/global/config
POST /v1/global/apps/app-lists
GET /v1/global/apps/app-lists
POST /v1/global/apps/custom
GET /v1/global/apps/custom
POST /v1/global/content-filters
GET /v1/global/content-filters
POST /v1/global/lan-segments
GET /v1/global/lan-segments
POST /v1/global/site-lists
GET /v1/global/site-lists
DELETE /v1/global/apps/app-lists/{appListId}
GET /v1/global/apps/app-lists/{appListId}
PUT /v1/global/apps/app-lists/{appListId}
DELETE /v1/global/apps/custom/{appId}
GET /v1/global/apps/custom/{appId}
PUT /v1/global/apps/custom/{appId}
DELETE /v1/global/content-filters/{globalContentFilterId}
GET /v1/global/content-filters/{globalContentFilterId}
PUT /v1/global/content-filters/{globalContentFilterId}
DELETE /v1/global/lan-segments/{id}
DELETE /v1/global/site-lists/{id}
GET /v1/global/site-lists/{id}
PUT /v1/global/site-lists/{id}
GET /v1/global/apps/categories
GET /v1/global/apps/custom/{appId}/details/app-lists
GET /v1/global/apps/app-list-options
GET /v1/global/apps/categories/{categoryId}/apps
GET /v1/global/apps/app-lists/{appListId}/details/apps
POST /v1/global/attached-edges
GET /v1/global/domain-categories
GET /v1/global/ipfix/device
GET /v1/global/ntps/device
GET /v1/global/snmps/device
GET /v1/global/syslogs/device
GET /v1/global/ipsec-profile/{id}
GET /v1/global/ipsec-profile
POST /v1/global/ipfix
GET /v1/global/ipfix/site
POST /v1/global/ntps
GET /v1/global/ntps/site
GET /v1/global/device-status
GET /v1/global/site-status
POST /v1/global/summary
POST /v1/global/prefix-sets
POST /v1/global/routing-policies
POST /v1/global/snmps
GET /v1/global/snmps/site
POST /v1/global/syslogs
GET /v1/global/syslogs/site
POST /v1/global/traffic-policies
GET /v1/global/apps/graphiant
GET /v1/global/lan-segments/{vrfId}/devices
GET /v1/global/site-lists/{id}/sites
GET /v1/global/ipsec-profile/{vpnProfileId}/site-to-site
POST /v1/global/sync

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/graphiant-global-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

graphiant-global-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Graphiant Global API
  version: 1.0.0
  description: Graphiant API documentation.
servers:
- url: https://api.graphiant.com
security:
- jwtAuth: []
tags:
- name: Global
paths:
  /v1/global/config:
    patch:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalConfigPatchRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalConfigPatchResponse'
      description: Update global objects for an enterprise
      tags:
      - Global
  /v1/global/apps/app-lists:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalAppsAppListsPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsAppListsPostResponse'
      description: Create an app list under the current enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsAppListsGetResponse'
      description: Get all app lists for the current enterprise
      tags:
      - Global
  /v1/global/apps/custom:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalAppsCustomPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCustomPostResponse'
      description: Create a new global app under the current enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCustomGetResponse'
      description: Get all global apps mapped by the current enterprise
      tags:
      - Global
  /v1/global/content-filters:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalContentFiltersPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalContentFiltersPostResponse'
      description: Configure a new content filter under the current enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalContentFiltersGetResponse'
      description: Get basic details for all content filter under the current enterprise
      tags:
      - Global
  /v1/global/lan-segments:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalLanSegmentsPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalLanSegmentsPostResponse'
      description: Create a new lan-segment scoped to the enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: filterExtranetProducers
        in: query
        description: ''
        required: false
        schema:
          type: boolean
          example: true
        example: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalLanSegmentsGetResponse'
      description: Get a list of lan-segments under the currently logged in enterprise
      tags:
      - Global
  /v1/global/site-lists:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalSiteListsPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalSiteListsPostResponse'
      description: Create a new site list scoped to the enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalSiteListsGetResponse'
      description: Get a list of site lists under the currently logged in enterprise
      tags:
      - Global
  /v1/global/apps/app-lists/{appListId}:
    delete:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appListId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsAppListsAppListIdDeleteResponse'
      description: Delete an app list under the current enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appListId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsAppListsAppListIdGetResponse'
      description: Get the configuration for an app list under the current enterprise
      tags:
      - Global
    put:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appListId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalAppsAppListsAppListIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsAppListsAppListIdPutResponse'
      description: Overwrite the configuration for an app list under the current enterprise
      tags:
      - Global
  /v1/global/apps/custom/{appId}:
    delete:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCustomAppIdDeleteResponse'
      description: Delete a global app under the current enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCustomAppIdGetResponse'
      description: Get the configuration for a global app under the current enterprise
      tags:
      - Global
    put:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalAppsCustomAppIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCustomAppIdPutResponse'
      description: Overwrite the configuration for a global app under the current enterprise
      tags:
      - Global
  /v1/global/content-filters/{globalContentFilterId}:
    delete:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: globalContentFilterId
        in: path
        required: true
        description: ID of the global content filter to remove.
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalContentFiltersGlobalContentFilterIdDeleteResponse'
      description: Delete a content filter under the current enterprise
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: globalContentFilterId
        in: path
        required: true
        description: ID of the global content filter whose configuration should be returned.
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalContentFiltersGlobalContentFilterIdGetResponse'
      description: Get the config for a content filter under the current enterprise
      tags:
      - Global
    put:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: globalContentFilterId
        in: path
        required: true
        description: ID of the global content filter to replace with the supplied configuration.
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalContentFiltersGlobalContentFilterIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalContentFiltersGlobalContentFilterIdPutResponse'
      description: Overwrite a pre-existing content filter under the current enterprise
      tags:
      - Global
  /v1/global/lan-segments/{id}:
    delete:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: id
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '204':
          description: No Content
      description: Delete a lan-segment
      tags:
      - Global
  /v1/global/site-lists/{id}:
    delete:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: id
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '204':
          description: No Content
      description: Delete a site list
      tags:
      - Global
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: id
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalSiteListsIdGetResponse'
      description: Get a details of a site list
      tags:
      - Global
    put:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: id
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalSiteListsIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalSiteListsIdPutResponse'
      description: Update a new site list scoped to the enterprise
      tags:
      - Global
  /v1/global/apps/categories:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCategoriesGetResponse'
      description: Get all app categories holding Graphiant apps
      tags:
      - Global
  /v1/global/apps/custom/{appId}/details/app-lists:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCustomAppIdDetailsAppListsGetResponse'
      description: Get all app lists that contain the relevant global app
      tags:
      - Global
  /v1/global/apps/app-list-options:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsAppListOptionsGetResponse'
      description: Gets all apps and categories assignable to an app list for the the current enterprise
      tags:
      - Global
  /v1/global/apps/categories/{categoryId}/apps:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: categoryId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsCategoriesCategoryIdAppsGetResponse'
      description: Get all Graphiant apps in an app category
      tags:
      - Global
  /v1/global/apps/app-lists/{appListId}/details/apps:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: appListId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAppsAppListsAppListIdDetailsAppsGetResponse'
      description: Get all apps that are members of the provided app list
      tags:
      - Global
  /v1/global/attached-edges:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalAttachedEdgesPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalAttachedEdgesPostResponse'
      description: Returns attached edges for global object
      tags:
      - Global
  /v1/global/domain-categories:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalDomainCategoriesGetResponse'
      description: Get all domain categories from the DPI engine
      tags:
      - Global
  /v1/global/ipfix/device:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: deviceId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalIpfixDeviceGetResponse'
      description: Get global ipfix exporters objects that failed to attach for a device
      tags:
      - Global
  /v1/global/ntps/device:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: deviceId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalNtpsDeviceGetResponse'
      description: Get global ntp objects that failed to attach for a device
      tags:
      - Global
  /v1/global/snmps/device:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: deviceId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalSnmpsDeviceGetResponse'
      description: Get global snmp objects that failed to attach for a device
      tags:
      - Global
  /v1/global/syslogs/device:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: deviceId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalSyslogsDeviceGetResponse'
      description: Get global syslog objects that failed to attach for a device
      tags:
      - Global
  /v1/global/ipsec-profile/{id}:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: id
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalIpsecProfileIdGetResponse'
      description: Get details of the configured global IPsec Profiles
      tags:
      - Global
  /v1/global/ipsec-profile:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalIpsecProfileGetResponse'
      description: Get all the configured global IPsec Profiles for the current enterprise
      tags:
      - Global
  /v1/global/ipfix:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalIpfixPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalIpfixPostResponse'
      description: Get configured global ipfix exporters
      tags:
      - Global
  /v1/global/ipfix/site:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: siteId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalIpfixSiteGetResponse'
      description: Get configured global ipfix exporters for a site
      tags:
      - Global
  /v1/global/ntps:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1GlobalNtpsPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalNtpsPostResponse'
      description: Get configured global ntps
      tags:
      - Global
  /v1/global/ntps/site:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: siteId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalNtpsSiteGetResponse'
      description: Get configured global ntps
      tags:
      - Global
  /v1/global/device-status:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: ipfixExportedId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      - name: ntpId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      - name: prefixSetId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      - name: routingPolicyId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      - name: snmpId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      - name: syslogServerId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      - name: trafficPolicyId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1GlobalDeviceStatusGetResponse'
      description: Get status on global collector attached to devices
      tags:
      - Global
  /v1/global/site-status:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: ipfixExportedSiteId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
  

# --- truncated at 32 KB (145 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/graphiant/refs/heads/main/openapi/graphiant-global-api-openapi.yml