Graphiant Extranet API

The Extranet API from Graphiant — 33 operation(s) for extranet.

Operations 39

POST /v2/extranet/sites-consumption-overview
POST /v2/extranet/service-overtime-consumption
POST /v2/extranet/sites-usage
POST /v2/extranet/consumers-usage/top
POST /v2/extranet/lan-segments-usage/top
POST /v1/extranet/sites-usage/top
POST /v2/extranet/total-usage
POST /v1/extranet/b2b/matches/{matchId}/consumer/check
POST /v1/extranet/b2b/producer
POST /v1/extranet/b2b/matches/{matchId}/consumer
POST /v1/extranet/b2b/customers
POST /v1/extranet/b2b/matches
POST /v1/extranet/b2b/matches/customers
DELETE /v1/extranet/b2b/producer/{id}
GET /v1/extranet/b2b/producer/{id}
PUT /v1/extranet/b2b/producer/{id}
DELETE /v1/extranet/b2b/consumers/{id}
PUT /v1/extranet/b2b/consumers/{id}
DELETE /v1/extranet/b2b/customers/{id}
PUT /v1/extranet/b2b/customers/{id}
DELETE /v1/extranet/b2b/matches/{matchId}
GET /v1/extranet/b2b/matches/{matchId}
PUT /v1/extranet/b2b/matches/{matchId}
GET /v1/extranet/b2b/consumers/{customerId}
GET /v1/extranet/b2b/consumers/{id}/device-status
GET /v1/extranet/b2b/customers/{id}/details
GET /v1/extranet/b2b/customers/{id}/matches/summary
GET /v1/extranet/b2b/customers/summary
GET /v1/extranet/b2b/matches/{matchId}/details
GET /v1/extranet/b2b/producer/{id}/customers
GET /v1/extranet/b2b/producer/{id}/device-status
GET /v1/extranet/b2b/services/summary
PUT /v1/extranet/b2b/matches/pause
POST /v1/extranet/b2b/customers/{id}/retry
POST /v1/extranet/b2b/producer/review
POST /v1/extranet/b2b/matches/review
PUT /v1/extranet/b2b/consumers/{id}/prefixes
PUT /v1/extranet/b2b/matches/{matchId}/status
PUT /v1/extranet/b2b/producer/{id}/status

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-extranet-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-extranet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Graphiant Extranet API
  version: 1.0.0
  description: Graphiant API documentation.
servers:
- url: https://api.graphiant.com
security:
- jwtAuth: []
tags:
- name: Extranet
paths:
  /v2/extranet/sites-consumption-overview:
    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/v2ExtranetSitesConsumptionOverviewPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ExtranetSitesConsumptionOverviewPostResponse'
      description: Get extranet service consumption overview over timewindow
      tags:
      - Extranet
  /v2/extranet/service-overtime-consumption:
    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/v2ExtranetServiceOvertimeConsumptionPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ExtranetServiceOvertimeConsumptionPostResponse'
      description: Get extranet service cumulative consumption over timewindow
      tags:
      - Extranet
  /v2/extranet/sites-usage:
    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/v2ExtranetSitesUsagePostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ExtranetSitesUsagePostResponse'
      description: Get extranet service sites usage stats v2
      tags:
      - Extranet
  /v2/extranet/consumers-usage/top:
    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/v2ExtranetConsumersUsageTopPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ExtranetConsumersUsageTopPostResponse'
      description: Get extranet service top consumer usage stats
      tags:
      - Extranet
  /v2/extranet/lan-segments-usage/top:
    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/v2ExtranetLanSegmentsUsageTopPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ExtranetLanSegmentsUsageTopPostResponse'
      description: Get extranet service top lan segment usage stats
      tags:
      - Extranet
  /v1/extranet/sites-usage/top:
    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/v1ExtranetSitesUsageTopPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetSitesUsageTopPostResponse'
      description: Get extranet service top sites usage stats
      tags:
      - Extranet
  /v2/extranet/total-usage:
    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/v2ExtranetTotalUsagePostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ExtranetTotalUsagePostResponse'
      description: Get extranet service total usage stats
      tags:
      - Extranet
  /v1/extranet/b2b/matches/{matchId}/consumer/check:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: matchId
        in: path
        required: true
        description: Match id (URL path :matchId)
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdConsumerCheckPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdConsumerCheckPostResponse'
      description: Check extranet service consumer configuration
      tags:
      - Extranet
  /v1/extranet/b2b/producer:
    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/v1ExtranetB2bProducerPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bProducerPostResponse'
      description: Create an inter-enterprise extranet service (peering, client-to-server, …)
      tags:
      - Extranet
  /v1/extranet/b2b/matches/{matchId}/consumer:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: matchId
        in: path
        required: true
        description: Match id (URL path :matchId)
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdConsumerPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdConsumerPostResponse'
      description: Consumer accepts an extranet service match
      tags:
      - Extranet
  /v1/extranet/b2b/customers:
    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/v1ExtranetB2bCustomersPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bCustomersPostResponse'
      description: Create an extranet service customer (partner directory entry)
      tags:
      - Extranet
  /v1/extranet/b2b/matches:
    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/v1ExtranetB2bMatchesPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesPostResponse'
      description: Match an extranet service to a customer
      tags:
      - Extranet
  /v1/extranet/b2b/matches/customers:
    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/v1ExtranetB2bMatchesCustomersPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesCustomersPostResponse'
      description: Bulk subscribe customers to an extranet service
      tags:
      - Extranet
  /v1/extranet/b2b/producer/{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/v1ExtranetB2bProducerIdDeleteResponse'
      description: Delete an inter-enterprise extranet service
      tags:
      - Extranet
    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/v1ExtranetB2bProducerIdGetResponse'
      description: Get an inter-enterprise extranet service
      tags:
      - Extranet
    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/v1ExtranetB2bProducerIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bProducerIdPutResponse'
      description: Update an inter-enterprise extranet service
      tags:
      - Extranet
  /v1/extranet/b2b/consumers/{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/v1ExtranetB2bConsumersIdDeleteResponse'
      description: Delete an extranet service consumer subscription
      tags:
      - Extranet
    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: Consumer subscription id
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetB2bConsumersIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bConsumersIdPutResponse'
      description: Update extranet service consumer
      tags:
      - Extranet
  /v1/extranet/b2b/customers/{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/v1ExtranetB2bCustomersIdDeleteResponse'
      description: Delete an extranet service customer
      tags:
      - Extranet
    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/v1ExtranetB2bCustomersIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bCustomersIdPutResponse'
      description: Update an extranet service customer
      tags:
      - Extranet
  /v1/extranet/b2b/matches/{matchId}:
    delete:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: matchId
        in: path
        required: true
        description: Match id (URL path :matchId)
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdDeleteResponse'
      description: Delete an extranet service match
      tags:
      - Extranet
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: matchId
        in: path
        required: true
        description: Match id (URL path :matchId)
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdGetResponse'
      description: Get extranet service match details
      tags:
      - Extranet
    put:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: matchId
        in: path
        required: true
        description: Match id (URL path :matchId)
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdPutResponse'
      description: Update extranet service match
      tags:
      - Extranet
  /v1/extranet/b2b/consumers/{customerId}:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: customerId
        in: path
        required: true
        description: Partner customer id
        schema:
          type: integer
          format: int64
          example: 1234567891011
      - name: serviceId
        in: query
        description: Producer service id
        required: false
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bConsumersCustomerIdGetResponse'
      description: Get extranet service consumer subscription
      tags:
      - Extranet
  /v1/extranet/b2b/consumers/{id}/device-status:
    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/v1ExtranetB2bConsumersIdDeviceStatusGetResponse'
      description: Get extranet consumer device rollout status
      tags:
      - Extranet
  /v1/extranet/b2b/customers/{id}/details:
    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/v1ExtranetB2bCustomersIdDetailsGetResponse'
      description: Get an extranet service customer
      tags:
      - Extranet
  /v1/extranet/b2b/customers/{id}/matches/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: Customer id
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bCustomersIdMatchesSummaryGetResponse'
      description: Get matched services summary for a customer
      tags:
      - Extranet
  /v1/extranet/b2b/customers/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/v1ExtranetB2bCustomersSummaryGetResponse'
      description: List extranet service customers for the enterprise
      tags:
      - Extranet
  /v1/extranet/b2b/matches/{matchId}/details:
    get:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: matchId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdDetailsGetResponse'
      description: Get match details for consumer accept flow
      tags:
      - Extranet
  /v1/extranet/b2b/producer/{id}/customers:
    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: Producer service id
        schema:
          type: integer
          format: int64
          example: 1234567891011
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bProducerIdCustomersGetResponse'
      description: List customers matched to an extranet producer service
      tags:
      - Extranet
  /v1/extranet/b2b/producer/{id}/device-status:
    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/v1ExtranetB2bProducerIdDeviceStatusGetResponse'
      description: Get extranet producer device rollout status
      tags:
      - Extranet
  /v1/extranet/b2b/services/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/v1ExtranetB2bServicesSummaryGetResponse'
      description: List inter-enterprise extranet services
      tags:
      - Extranet
  /v1/extranet/b2b/matches/pause:
    put:
      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/v1ExtranetB2bMatchesPausePutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesPausePutResponse'
      description: Pause extranet service matches via customer summary
      tags:
      - Extranet
  /v1/extranet/b2b/customers/{id}/retry:
    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: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetB2bCustomersIdRetryPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bCustomersIdRetryPostResponse'
      description: Retry extranet service customer invite
      tags:
      - Extranet
  /v1/extranet/b2b/producer/review:
    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/v1ExtranetB2bProducerReviewPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bProducerReviewPostResponse'
      description: Review inter-enterprise extranet service configuration
      tags:
      - Extranet
  /v1/extranet/b2b/matches/review:
    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/v1ExtranetB2bMatchesReviewPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesReviewPostResponse'
      description: Review extranet service match
      tags:
      - Extranet
  /v1/extranet/b2b/consumers/{id}/prefixes:
    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: Consumer subscription id
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetB2bConsumersIdPrefixesPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bConsumersIdPrefixesPutResponse'
      description: Update extranet service consumer prefix NAT (peering preset)
      tags:
      - Extranet
  /v1/extranet/b2b/matches/{matchId}/status:
    put:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      - name: matchId
        in: path
        required: true
        description: ''
        schema:
          type: integer
          format: int64
          example: 1234567891011
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdStatusPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bMatchesMatchIdStatusPutResponse'
      description: Pause or resume an extranet service match
      tags:
      - Extranet
  /v1/extranet/b2b/producer/{id}/status:
    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/v1ExtranetB2bProducerIdStatusPutRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ExtranetB2bProducerIdStatusPutResponse'
      description: Pause or resume an inter-enterprise extranet service
      tags:
      - Extranet
components:
  schemas:
    v1ExtranetB2bMatchesMatchIdConsumerCheckPostResponse:
      type: object
      properties:
        consumerActivityId:
          type: string
          example: example string
        id:
          type: integer
          format: int64
          example: 1234567891011
        policy:
          $ref: '#/components/schemas/manaV2ExtranetServiceConsumerPolicy'
      additionalProperties: false
    manaV2ExtranetNatTranslationDecentralized:
      type: object
      properties:
        prefixes:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/manaV2ExtranetNatTranslationDevicePrefixes'
      additionalProperties: f

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