Pax8 Provision Attempts API

The Provision Attempts API from Pax8 — 3 operation(s) for provision attempts.

Operations 4

GET /provision-requests/{provisionRequestId}/attempts Get All Provision Attempts for a Provision Request #
POST /provision-requests/{provisionRequestId}/attempts Create Provision Attempt for a Provision Request and Provision Detail #
GET /provision-requests/{provisionRequestId}/attempts/{provisionAttemptId} Get Provision Attempt by ID #
GET /provision-requests/{provisionRequestId}/attempts/latest Get Latest Provision Attempt for a Provision Request #

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-provision-attempts-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-provision-attempts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Access Token Provision Attempts 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: Provision Attempts
paths:
  /provision-requests/{provisionRequestId}/attempts:
    get:
      tags:
      - Provision Attempts
      summary: Get All Provision Attempts for a Provision Request
      operationId: getAllProvisionAttempts
      parameters:
      - name: provisionRequestId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: provisionDetailId
        in: query
        required: false
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PageDTOProvisionAttempt'
    post:
      tags:
      - Provision Attempts
      summary: Create Provision Attempt for a Provision Request and Provision Detail
      operationId: createAttemptForRequest
      parameters:
      - name: provisionRequestId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProvisionAttempt'
  /provision-requests/{provisionRequestId}/attempts/{provisionAttemptId}:
    get:
      tags:
      - Provision Attempts
      summary: Get Provision Attempt by ID
      operationId: getOneProvisionAttempt
      parameters:
      - name: provisionRequestId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: provisionAttemptId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProvisionAttempt'
  /provision-requests/{provisionRequestId}/attempts/latest:
    get:
      tags:
      - Provision Attempts
      summary: Get Latest Provision Attempt for a Provision Request
      operationId: getLatestProvisionAttempt
      parameters:
      - name: provisionRequestId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProvisionAttempt'
components:
  schemas:
    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
    ProvisionAttempt:
      type: object
      properties:
        id:
          type: string
          format: uuid
        provisionDetailId:
          type: string
          format: uuid
        webhookId:
          type: string
          format: uuid
        status:
          type: string
        errorDetail:
          type: string
        createdDate:
          type: string
          format: date-time
    PageDTOProvisionAttempt:
      required:
      - content
      - page
      type: object
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/ProvisionAttempt'
        page:
          $ref: '#/components/schemas/PageInfo'
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://token-manager.pax8.com/oauth/token
          scopes: {}