Pax8 Provisioners API

The Provisioners API from Pax8 — 5 operation(s) for provisioners.

Operations 6

GET /provisioners/{provisionerId}/webhooks Get All Webhook Configurations for a Provisioner #
POST /provisioners/{provisionerId}/webhooks Create a Webhook Configuration for a Provisioner #
GET /provisioners Get All Provisioners #
GET /provisioners/{provisionerId} Get One Provisioner by ID #
GET /provisioners/{provisionerId}/webhooks/{webhookId} Get One Webhook for a Provisioner #
GET /provisioners/{provisionerId}/webhooks/latest Get Latest Webhook for a Provisioner #

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/pax8-provisioners-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 email required.

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

OpenAPI Specification

pax8-provisioners-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Access Token Provisioners API
  version: 1.0.0
  termsOfService: https://usc.pax8.com/resource/display/65345
  description: The Access Token that allows access to the Pax8 API
servers:
- url: https://api.pax8.com/v1
security:
- OAuth2: []
tags:
- name: Provisioners
paths:
  /provisioners/{provisionerId}/webhooks:
    get:
      tags:
      - Provisioners
      summary: Get All Webhook Configurations for a Provisioner
      operationId: getAllWebhooksForProvisioner
      parameters:
      - name: provisionerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PageDTOWebhook'
    post:
      tags:
      - Provisioners
      summary: Create a Webhook Configuration for a Provisioner
      operationId: createWebhookForProvisioner
      parameters:
      - name: provisionerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookCreate'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CreatedWebhook'
  /provisioners:
    get:
      tags:
      - Provisioners
      summary: Get All Provisioners
      operationId: getAllProvisioners
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PageDTOProvisioner'
  /provisioners/{provisionerId}:
    get:
      tags:
      - Provisioners
      summary: Get One Provisioner by ID
      operationId: getOneProvisioner
      parameters:
      - name: provisionerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Provisioner'
  /provisioners/{provisionerId}/webhooks/{webhookId}:
    get:
      tags:
      - Provisioners
      summary: Get One Webhook for a Provisioner
      operationId: getOneWebhookForProvisioner
      parameters:
      - name: provisionerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: webhookId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Webhook'
  /provisioners/{provisionerId}/webhooks/latest:
    get:
      tags:
      - Provisioners
      summary: Get Latest Webhook for a Provisioner
      operationId: getLatestWebhookForProvisioner
      parameters:
      - name: provisionerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Webhook'
components:
  schemas:
    Provisioner:
      required:
      - name
      - vendorId
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdDate:
          type: string
          format: date-time
        vendorId:
          type: string
          format: uuid
        name:
          type: string
    CreatedSharedSecret:
      required:
      - credential
      - header
      type: object
      properties:
        header:
          type: string
        credential:
          type: string
    PageDTOWebhook:
      required:
      - content
      - page
      type: object
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/Webhook'
        page:
          $ref: '#/components/schemas/PageInfo'
    PageInfo:
      required:
      - number
      - size
      - totalElements
      - totalPages
      type: object
      properties:
        size:
          type: integer
          format: int32
        totalElements:
          type: integer
          format: int64
        totalPages:
          type: integer
          format: int32
        number:
          type: integer
          format: int32
    SharedSecret:
      required:
      - credential
      type: object
      properties:
        header:
          type: string
        credential:
          type: string
    CreatedWebhook:
      required:
      - createdDate
      - sharedSecret
      - url
      type: object
      properties:
        id:
          type: string
          format: uuid
        url:
          type: string
        sharedSecret:
          $ref: '#/components/schemas/CreatedSharedSecret'
        createdDate:
          type: string
          format: date-time
    WebhookCreate:
      required:
      - url
      type: object
      properties:
        url:
          type: string
        sharedSecret:
          $ref: '#/components/schemas/SharedSecretCreate'
    SharedSecretCreate:
      type: object
      properties:
        header:
          type: string
    PageDTOProvisioner:
      required:
      - content
      - page
      type: object
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/Provisioner'
        page:
          $ref: '#/components/schemas/PageInfo'
    Webhook:
      required:
      - createdDate
      - sharedSecret
      - url
      type: object
      properties:
        id:
          type: string
          format: uuid
        url:
          type: string
        sharedSecret:
          $ref: '#/components/schemas/SharedSecret'
        createdDate:
          type: string
          format: date-time
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://token-manager.pax8.com/oauth/token
          scopes: {}