Graphiant Extranets B2b API

The Extranets B2b API from Graphiant — 13 operation(s) for extranets b2b.

Operations 15

POST /v1/extranets-b2b/{id}/customer/
POST /v1/extranets-b2b/consumer
POST /v1/extranets-b2b
DELETE /v1/extranets-b2b/consumer/{id}
GET /v1/extranets-b2b/consumer/{id}
DELETE /v1/extranets-b2b/customer/{id}
DELETE /v1/extranets-b2b/{id}
PUT /v1/extranets-b2b/{id}
GET /v1/extranets-b2b/customer-info/{id}
GET /v1/extranets-b2b/{id}/customer-summary
GET /v1/extranets-b2b/consumer-device-status/{id}
GET /v1/extranets-b2b/consumer-summary
GET /v1/extranets-b2b/{id}/producer
GET /v1/extranets-b2b/producer-device-status/{id}
GET /v1/extranets-b2b/producers-summary

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-extranets-b2b-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-extranets-b2b-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Graphiant Extranets B2b API
  version: 1.0.0
  description: Graphiant API documentation.
servers:
- url: https://api.graphiant.com
security:
- jwtAuth: []
tags:
- name: Extranets B2b
paths:
  /v1/extranets-b2b/{id}/customer/:
    post:
      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: Service ID of the application customer is invited to
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetsB2bIdCustomerPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bIdCustomerPostResponse'
      description: Create B2B extranet application customer invite
      tags:
      - Extranets B2b
  /v1/extranets-b2b/consumer:
    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/v1ExtranetsB2bConsumerPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bConsumerPostResponse'
      description: Create a new B2B extranet consumer
      tags:
      - Extranets B2b
  /v1/extranets-b2b:
    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/v1ExtranetsB2bPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bPostResponse'
      description: Create a new B2B extranet producer
      tags:
      - Extranets B2b
  /v1/extranets-b2b/consumer/{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:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bConsumerIdDeleteResponse'
      description: Delete a B2B extranet consumer
      tags:
      - Extranets B2b
    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/v1ExtranetsB2bConsumerIdGetResponse'
      description: Get a B2B extranet consumer
      tags:
      - Extranets B2b
  /v1/extranets-b2b/customer/{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:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bCustomerIdDeleteResponse'
      description: Delete a B2B extranet customer
      tags:
      - Extranets B2b
  /v1/extranets-b2b/{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: ID of the producer service to be deleted
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bIdDeleteResponse'
      description: Delete a B2B extranet producer
      tags:
      - Extranets B2b
    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: ID of the B2B Application service
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetsB2bIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bIdPutResponse'
      description: Update a B2B extranet producer
      tags:
      - Extranets B2b
  /v1/extranets-b2b/customer-info/{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/v1ExtranetsB2bCustomerInfoIdGetResponse'
      description: Get B2B extranet application customer
      tags:
      - Extranets B2b
  /v1/extranets-b2b/{id}/customer-summary:
    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/v1ExtranetsB2bIdCustomerSummaryGetResponse'
      description: Get B2B extranet application customers summary
      tags:
      - Extranets B2b
  /v1/extranets-b2b/consumer-device-status/{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/v1ExtranetsB2bConsumerDeviceStatusIdGetResponse'
      description: Get B2B extranet consumer status
      tags:
      - Extranets B2b
  /v1/extranets-b2b/consumer-summary:
    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/v1ExtranetsB2bConsumerSummaryGetResponse'
      description: Get B2B extranet consumers summary
      tags:
      - Extranets B2b
  /v1/extranets-b2b/{id}/producer:
    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
      - name: type
        in: query
        description: ''
        required: false
        schema:
          type: string
          example: ENUM_VALUE
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetsB2bIdProducerGetResponse'
      description: Get a B2B extranet producer
      tags:
      - Extranets B2b
  /v1/extranets-b2b/producer-device-status/{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/v1ExtranetsB2bProducerDeviceStatusIdGetResponse'
      description: Get B2B extranet producer status
      tags:
      - Extranets B2b
  /v1/extranets-b2b/producers-summary:
    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/v1ExtranetsB2bProducersSummaryGetResponse'
      description: Get B2B extranet producers summary
      tags:
      - Extranets B2b
components:
  schemas:
    v1ExtranetsB2bPostRequest:
      type: object
      properties:
        policy:
          $ref: '#/components/schemas/manaV2B2bExtranetProducerPolicy'
        serviceName:
          type: string
          example: example string
          description: Name of the service (required)
        type:
          type: string
          example: ENUM_VALUE
          description: Type of the service whether it is application or peering (required)
      additionalProperties: false
      required:
      - policy
      - serviceName
      - type
    manaV2B2bExtranetPrefixTag:
      type: object
      properties:
        prefix:
          type: string
          example: 10.1.2.0/24
          description: Prefix advertised by the service (required)
        tag:
          type: string
          example: example string
          description: Tag for the prefix
      additionalProperties: false
      required:
      - prefix
    v1ExtranetsB2bIdPutRequest:
      type: object
      properties:
        policy:
          $ref: '#/components/schemas/manaV2B2bExtranetProducerPolicy'
      additionalProperties: false
      required:
      - policy
    manaV2B2bExtranetProducerPolicy:
      type: object
      properties:
        description:
          type: string
          example: example string
          description: Description for the service
        globalObjectDeviceSummaries:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/manaV2GlobalObjectServiceSummaries'
        globalObjectSummaries:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/manaV2GlobalObjectServiceSummaries'
        natPools:
          type: array
          items:
            type: string
            example: example string
            description: NAT pools for the service (required)
        prefixTags:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bExtranetPrefixTag'
        profiles:
          type: array
          items:
            $ref: '#/components/schemas/manaV2ApplicationProfile'
        serviceLanSegment:
          type: integer
          format: int64
          example: 1234567891011
          description: LAN segment for the service (required)
        servicePrefixes:
          type: array
          items:
            type: string
            example: example string
            description: Prefixes advertised by the service (required)
        sites:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bSiteInformation'
        sla:
          $ref: '#/components/schemas/manaV2SlaInformation'
        status:
          type: string
          example: ENUM_VALUE
        type:
          type: string
          example: ENUM_VALUE
          description: Type of the service whether it is application or peering (required)
        unmatchedCustomers:
          type: integer
          format: int32
          example: 123
          minimum: 0
      additionalProperties: false
      required:
      - natPools
      - serviceLanSegment
      - servicePrefixes
      - sites
      - type
    v1ExtranetsB2bIdDeleteResponse:
      type: object
      properties: {}
      additionalProperties: false
    manaV2Policer:
      type: object
      properties:
        burstSize:
          type: integer
          format: int32
          example: 123
          description: Burst size for the policer (required)
        bw:
          type: integer
          format: int32
          example: 123
          description: Bandwidth for the policer (required)
      additionalProperties: false
      required:
      - burstSize
      - bw
    manaV2B2bSiteInformation:
      type: object
      properties:
        bwAllocationSiteLists:
          type: integer
          format: int32
          example: 123
          description: Total Bandwidth allocation for the service on these site lists
        bwAllocationSites:
          type: integer
          format: int32
          example: 123
          description: Total Bandwidth allocation for the service on these sites
        policerSiteLists:
          $ref: '#/components/schemas/manaV2Policer'
        policerSites:
          $ref: '#/components/schemas/manaV2Policer'
        siteLists:
          type: array
          items:
            type: integer
            format: int64
            example: 1234567891011
            description: Site list IDs where the service is deployed
        sites:
          type: array
          items:
            type: integer
            format: int64
            example: 1234567891011
            description: Site IDs where the service is deployed
      additionalProperties: false
    manaV2B2bExtranetConsumersSummary:
      type: object
      properties:
        b2bStatus:
          type: string
          example: ENUM_VALUE
        createdAt:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        id:
          type: integer
          format: int64
          example: 1234567891011
        numEdges:
          type: integer
          format: int32
          example: 123
          minimum: 0
        numSegments:
          type: integer
          format: int32
          example: 123
          minimum: 0
        numSites:
          type: integer
          format: int32
          example: 123
          minimum: 0
        providerName:
          type: string
          example: example string
        publisherName:
          type: string
          example: example string
        serviceName:
          type: string
          example: example string
        status:
          type: string
          example: ENUM_VALUE
        type:
          type: string
          example: ENUM_VALUE
      additionalProperties: false
    manaV2B2bApplicationCustomerSummary:
      type: object
      properties:
        adminEmail:
          type: string
          example: example string
        enterpriseId:
          type: integer
          format: int64
          example: 1234567891011
        id:
          type: integer
          format: int64
          example: 1234567891011
        name:
          type: string
          example: example string
        status:
          type: string
          example: ENUM_VALUE
        updatedAt:
          $ref: '#/components/schemas/googleProtobufTimestamp'
      additionalProperties: false
    manaV2B2bExtranetApplication:
      type: object
      properties:
        createdAt:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        id:
          type: integer
          format: int64
          example: 1234567891011
        isPublisher:
          type: boolean
          example: true
        lanSegment:
          type: integer
          format: int64
          example: 1234567891011
        matchedCustomers:
          type: integer
          format: int32
          example: 123
          minimum: 0
        name:
          type: string
          example: example string
        serverIpAddress:
          type: array
          items:
            type: string
            example: example string
        status:
          type: string
          example: ENUM_VALUE
        totalCustomers:
          type: integer
          format: int32
          example: 123
          minimum: 0
        totalSites:
          type: integer
          format: int32
          example: 123
          minimum: 0
        type:
          type: string
          example: ENUM_VALUE
        updatedAt:
          $ref: '#/components/schemas/googleProtobufTimestamp'
      additionalProperties: false
    v1ExtranetsB2bConsumerDeviceStatusIdGetResponse:
      type: object
      properties:
        serviceStatus:
          type: string
          example: ENUM_VALUE
        summary:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bExtranetStatusSummary'
      additionalProperties: false
    manaV2ExtranetConsumerLanSegmentPolicy:
      type: object
      properties:
        consumerLanSegment:
          type: integer
          format: int64
          example: 1234567891011
        restrictedPrefixes:
          type: array
          items:
            type: string
            example: example string
        rules:
          type: array
          items:
            $ref: '#/components/schemas/manaV2ExtranetConsumerNatRule'
      additionalProperties: false
    manaV2TrafficPolicyAction:
      type: object
      properties:
        backup:
          type: string
          example: ENUM_VALUE
          description: Backup circuit for the traffic policy action
        class:
          type: string
          example: ENUM_VALUE
          description: Class for the traffic policy action
        primary:
          type: string
          example: ENUM_VALUE
          description: Primary circuit for the traffic policy action
        result:
          type: string
          example: ENUM_VALUE
          description: Result for the traffic policy action
      additionalProperties: false
    googleProtobufTimestamp:
      type: object
      properties:
        nanos:
          type: integer
          format: int32
          example: 123
        seconds:
          type: integer
          format: int64
          example: 1234567891011
      additionalProperties: false
    manaV2ExtranetConsumerNatRule:
      type: object
      properties:
        outsideNatPrefix:
          type: string
          example: example string
          description: Optional nat prefix associated with a service prefix with an empty string indicating no NATing
        servicePrefix:
          type: string
          example: 10.1.2.0/24
          description: Service prefix for the NAT rule (required)
      additionalProperties: false
      required:
      - servicePrefix
    v1ExtranetsB2bProducersSummaryGetResponse:
      type: object
      properties:
        info:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bExtranetApplication'
      additionalProperties: false
    manaV2GlobalObjectServiceSummaries:
      type: object
      properties:
        routingPolicies:
          type: array
          items:
            $ref: '#/components/schemas/manaV2GlobalObjectSummary'
      additionalProperties: false
    v1ExtranetsB2bConsumerSummaryGetResponse:
      type: object
      properties:
        summary:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bExtranetConsumersSummary'
      additionalProperties: false
    v1ExtranetsB2bConsumerIdDeleteResponse:
      type: object
      properties: {}
      additionalProperties: false
    manaV2B2bExtranetApplicationInvite:
      type: object
      properties:
        adminEmail:
          type: string
          example: example string
          description: Admin email of the customer (required)
        consumerBurstSize:
          type: integer
          format: int32
          example: 123
          minimum: 0
          description: Maximum Burst size per site for the customer (required)
        consumerBwSite:
          type: integer
          format: int32
          example: 123
          minimum: 0
          description: Maximum Bandwidth allocation per site for the customer (required)
        enterpriseId:
          type: integer
          format: int64
          example: 1234567891011
          description: Enterprise ID of the customer (required)
        maximumSiteCount:
          type: integer
          format: int32
          example: 123
          minimum: 0
          description: Maximum number of sites for the customer (required)
        servicePrefixes:
          type: array
          items:
            type: string
            example: example string
            description: List of service prefixes for the application
      additionalProperties: false
      required:
      - adminEmail
      - consumerBurstSize
      - consumerBwSite
      - enterpriseId
      - maximumSiteCount
    v1ExtranetsB2bCustomerIdDeleteResponse:
      type: object
      properties: {}
      additionalProperties: false
    manaV2ExtranetConsumerLanSegmentPolicyResponse:
      type: object
      properties:
        consumerLanSegment:
          type: integer
          format: int64
          example: 1234567891011
        inboundSecurityRules:
          type: array
          items:
            $ref: '#/components/schemas/manaV2SecurityPolicyRule'
        outboundSecurityRules:
          type: array
          items:
            $ref: '#/components/schemas/manaV2SecurityPolicyRule'
        restrictedPrefixes:
          type: array
          items:
            type: string
            example: example string
        rules:
          type: array
          items:
            $ref: '#/components/schemas/manaV2ExtranetConsumerNatRule'
        trafficRules:
          type: array
          items:
            $ref: '#/components/schemas/manaV2TrafficPolicyRule'
      additionalProperties: false
    v1ExtranetsB2bCustomerInfoIdGetResponse:
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 1234567891011
        providerEnterpriseId:
          type: integer
          format: int64
          example: 1234567891011
        serviceName:
          type: string
          example: example string
        status:
          type: string
          example: ENUM_VALUE
      additionalProperties: false
    v1ExtranetsB2bIdCustomerSummaryGetResponse:
      type: object
      properties:
        customers:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bApplicationCustomerSummary'
      additionalProperties: false
    v1ExtranetsB2bIdPutResponse:
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 1234567891011
        policy:
          $ref: '#/components/schemas/manaV2B2bExtranetPolicyResponse'
      additionalProperties: false
    manaV2B2bExtranetStatusSummary:
      type: object
      properties:
        createdAt:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        deviceId:
          type: integer
          format: int64
          example: 1234567891011
        deviceStatus:
          type: string
          example: ENUM_VALUE
        location:
          type: integer
          format: int64
          example: 1234567891011
        status:
          type: string
          example: ENUM_VALUE
      additionalProperties: false
    v1ExtranetsB2bConsumerPostRequest:
      type: object
      properties:
        policy:
          type: array
          items:
            $ref: '#/components/schemas/manaV2ExtranetConsumerLanSegmentPolicy'
        providerEnterpriseId:
          type: integer
          format: int64
          example: 1234567891011
        serviceName:
          type: string
          example: example string
        siteInformation:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bSiteInformation'
      additionalProperties: false
    manaV2SlaInformation:
      type: object
      properties:
        backupCircuit:
          type: string
          example: ENUM_VALUE
          description: Backup circuit for the SLA information
        class:
          type: string
          example: ENUM_VALUE
          description: Class for the SLA information
        primaryCircuit:
          type: string
          example: ENUM_VALUE
          description: Primary circuit for the SLA information
      additionalProperties: false
    manaV2ConsumerDeviceInformation:
      type: object
      properties:
        deviceId:
          type: integer
          format: int64
          example: 1234567891011
        lastUpdated:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        site:
          type: integer
          format: int64
          example: 1234567891011
        status:
          type: string
          example: ENUM_VALUE
      additionalProperties: false
    v1ExtranetsB2bConsumerIdGetResponse:
      type: object
      properties:
        consumerId:
          type: integer
          format: int64
          example: 1234567891011
        policy:
          type: array
          items:
            $ref: '#/components/schemas/manaV2ExtranetConsumerLanSegmentPolicyResponse'
        serviceName:
          type: string
          example: example string
        siteInformation:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bSiteInformation'
      additionalProperties: false
    v1ExtranetsB2bConsumerPostResponse:
      type: object
      properties:
        device:
          type: array
          items:
            $ref: '#/components/schemas/manaV2ConsumerDeviceInformation'
        id:
          type: integer
          format: int64
          example: 1234567891011
        policy:
          type: array
          items:
            $ref: '#/components/schemas/manaV2ExtranetConsumerLanSegmentPolicyResponse'
        siteInformation:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bSiteInformation'
      additionalProperties: false
    v1ExtranetsB2bProducerDeviceStatusIdGetResponse:
      type: object
      properties:
        summary:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bExtranetStatusSummary'
      additionalProperties: false
    manaV2B2bExtranetPolicyResponse:
      type: object
      properties:
        dnsName:
          type: string
          example: example string
        inboundSecurityRules:
          type: array
          items:
            $ref: '#/components/schemas/manaV2SecurityPolicyRule'
        policy:
          $ref: '#/components/schemas/manaV2B2bExtranetProducerPolicy'
        serviceName:
          type: string
          example: example string
        trafficRules:
          type: array
          items:
            $ref: '#/components/schemas/manaV2TrafficPolicyRule'
      additionalProperties: false
    manaV2SecurityPolicyRule:
      type: object
      properties:
        action:
          type: string
          example: ENUM_VALUE
        implicit:
          type: boolean
          example: true
        match:
          $ref: '#/components/schemas/manaV2PolicyMatch'
        policyRuleIndex:
          type: integer
          format: int64
          example: 1234567891011
        seq:
          type: integer
          format: int32
          example: 123
          minimum: 0
      additionalProperties: false
    v1ExtranetsB2bPostResponse:
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 1234567891011
        policy:
          $ref: '#/components/schemas/manaV2B2bExtranetPolicyResponse'
      additionalProperties: false
    v1ExtranetsB2bIdCustomerPostResponse:
      type: object
      properties:
        responses:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bExtranetApplicationInviteResponse'
      additionalProperties: false
    manaV2B2bExtranetApplicationInviteResponse:
      type: object
      properties:
        adminEmail:
          type: string
          example: example string
        consumerBurstSize:
          type: integer
          format: int32
          example: 123
          minimum: 0
        consumerBwSite:
          type: integer
          format: int32
          example: 123
          minimum: 0
        enterpriseId:
          type: integer
          format: int64
          example: 1234567891011
        id:
          type: integer
          format: int64
          example: 1234567891011
        maximumSiteCount:
          type: integer
          format: int32
          example: 123
          minimum: 0
        servicePrefixes:
          type: array
          items:
            type: string
            example: example string
      additionalProperties: false
    v1ExtranetsB2bIdCustomerPostRequest:
      type: object
      properties:
        invites:
          type: array
          items:
            $ref: '#/components/schemas/manaV2B2bExtranetApplicationInvite'
      additionalProperties: false
      required:
      - invites
    v1ExtranetsB2bIdProducerGetResponse:
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 1234567891011
        policy:
          $ref: '#/components/schemas/manaV2B2bExtranetPolicyResponse'
      additionalProperties: false
    manaV2ApplicationProfile:
      type: object
      properties:
        portRange:
          type: string
          example: example string
          description: Port Range
        ports:
          type: array
          items:
            type: integer
            format: int32
            example: 123
            description: Ports for the application profile

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