Productiv Provisioning Workflows API

Fetch provisioning workflows and execution details.

Operations 3

GET /services/export/v1/customer/provisioning-workflows Productiv List Provisioning Workflows #
GET /services/export/v1/customer/provisioning-workflows/{workflowId}/executions Productiv List Provisioning Execution Summaries #
GET /services/export/v1/customer/provisioning-workflows/{workflowId}/executions/{executionId} Productiv Get Provisioning Workflow Execution #

Documentation

Specifications

Schemas & Data

Other Resources

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/productiv-provisioning-workflows-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

productiv-provisioning-workflows-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Productiv Developer App Details Provisioning Workflows API
  description: The Productiv Developer APIs support integrating custom applications into the Productiv platform, allowing external developers to define and publish new connected applications. Once an application is properly defined, Productiv supports APIs for pushing usage events and user information in a standardized format, as well as Data Export APIs for fetching your company's app portfolio, detailed app information, provisioning workflows, and audit events.
  version: v1
  contact:
    name: Productiv Support
    email: support@productiv.com
    url: https://productiv.com/
  license:
    name: Proprietary
    url: https://productiv.com/
servers:
- url: https://public-api.productiv.com
  description: Productiv Public API
- url: https://login.api.productiv.com
  description: Productiv OAuth2 Authorization Server
security:
- bearerAuth: []
tags:
- name: Provisioning Workflows
  description: Fetch provisioning workflows and execution details.
paths:
  /services/export/v1/customer/provisioning-workflows:
    get:
      operationId: listProvisioningWorkflows
      summary: Productiv List Provisioning Workflows
      description: Query the entire list of provisioning workflows configured on your account. Rate limit is 20 requests per second.
      tags:
      - Provisioning Workflows
      responses:
        '200':
          description: Provisioning workflows returned successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  workflows:
                    type: array
                    items:
                      type: object
                      properties:
                        workflowId:
                          type: string
                          description: The unique identifier of the workflow.
                        workflowName:
                          type: string
                          description: The name of the workflow.
                        applicationId:
                          type: string
                          description: The application associated with the workflow.
                        status:
                          type: string
                          description: The status of the workflow.
              examples:
                Listprovisioningworkflows200Example:
                  summary: Default listProvisioningWorkflows 200 response
                  x-microcks-default: true
                  value:
                    workflows:
                    - workflowId: '500123'
                      workflowName: example_value
                      applicationId: '500123'
                      status: example_value
        '401':
          description: Unauthorized.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /services/export/v1/customer/provisioning-workflows/{workflowId}/executions:
    get:
      operationId: listProvisioningExecutionSummaries
      summary: Productiv List Provisioning Execution Summaries
      description: Query a list of provisioning workflow execution summaries for an application instance within a time range.
      tags:
      - Provisioning Workflows
      parameters:
      - name: workflowId
        in: path
        required: true
        description: The unique identifier of the provisioning workflow.
        schema:
          type: string
        example: '500123'
      - name: startTime
        in: query
        description: Start time for the time range filter.
        schema:
          type: string
          format: date-time
        example: '2026-01-15T10:30:00Z'
      - name: endTime
        in: query
        description: End time for the time range filter.
        schema:
          type: string
          format: date-time
        example: '2026-01-15T10:30:00Z'
      responses:
        '200':
          description: Execution summaries returned successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  executions:
                    type: array
                    items:
                      type: object
                      properties:
                        executionId:
                          type: string
                          description: The unique identifier of the execution.
                        workflowId:
                          type: string
                          description: The workflow identifier.
                        status:
                          type: string
                          description: The status of the execution.
                        startTime:
                          type: string
                          format: date-time
                          description: When the execution started.
                        endTime:
                          type: string
                          format: date-time
                          description: When the execution completed.
              examples:
                Listprovisioningexecutionsummaries200Example:
                  summary: Default listProvisioningExecutionSummaries 200 response
                  x-microcks-default: true
                  value:
                    executions:
                    - executionId: '500123'
                      workflowId: '500123'
                      status: example_value
                      startTime: '2026-01-15T10:30:00Z'
                      endTime: '2026-01-15T10:30:00Z'
        '401':
          description: Unauthorized.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /services/export/v1/customer/provisioning-workflows/{workflowId}/executions/{executionId}:
    get:
      operationId: getProvisioningWorkflowExecution
      summary: Productiv Get Provisioning Workflow Execution
      description: Query the details of a specific provisioning workflow execution, including suggested or actioned outcomes for matched users.
      tags:
      - Provisioning Workflows
      parameters:
      - name: workflowId
        in: path
        required: true
        description: The unique identifier of the provisioning workflow.
        schema:
          type: string
        example: '500123'
      - name: executionId
        in: path
        required: true
        description: The unique identifier of the execution.
        schema:
          type: string
        example: '500123'
      responses:
        '200':
          description: Execution details returned successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  executionId:
                    type: string
                    description: The unique identifier of the execution.
                  workflowId:
                    type: string
                    description: The workflow identifier.
                  status:
                    type: string
                    description: The status of the execution.
                  users:
                    type: array
                    description: Users affected by the execution.
                    items:
                      type: object
                      properties:
                        email:
                          type: string
                          format: email
                        suggestedOutcome:
                          type: string
                        actionedOutcome:
                          type: string
              examples:
                Getprovisioningworkflowexecution200Example:
                  summary: Default getProvisioningWorkflowExecution 200 response
                  x-microcks-default: true
                  value:
                    executionId: '500123'
                    workflowId: '500123'
                    status: example_value
                    users:
                    - email: user@example.com
                      suggestedOutcome: example_value
                      actionedOutcome: example_value
        '401':
          description: Unauthorized.
        '404':
          description: Execution not found.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: OAuth2
      description: Bearer token obtained from the OAuth2 token endpoint at https://login.api.productiv.com/oauth2/token using client credentials grant type.