Productiv · Capability

Productiv Developer API — Provisioning Workflows

Productiv Developer API — Provisioning Workflows. 3 operations. Lead operation: Productiv List Provisioning Workflows. Self-contained Naftiko capability covering one Productiv business surface.

Run with Naftiko ProductivProvisioning Workflows

What You Can Do

GET
Listprovisioningworkflows — Productiv List Provisioning Workflows
/v1/services/export/v1/customer/provisioning-workflows
GET
Listprovisioningexecutionsummaries — Productiv List Provisioning Execution Summaries
/v1/services/export/v1/customer/provisioning-workflows/{workflowid}/executions
GET
Getprovisioningworkflowexecution — Productiv Get Provisioning Workflow Execution
/v1/services/export/v1/customer/provisioning-workflows/{workflowid}/executions/{executionid}

MCP Tools

productiv-list-provisioning-workflows

Productiv List Provisioning Workflows

read-only idempotent
productiv-list-provisioning-execution-summaries

Productiv List Provisioning Execution Summaries

read-only idempotent
productiv-get-provisioning-workflow-execution

Productiv Get Provisioning Workflow Execution

read-only idempotent

Capability Spec

developer-provisioning-workflows.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Productiv Developer API — Provisioning Workflows
  description: 'Productiv Developer API — Provisioning Workflows. 3 operations. Lead operation: Productiv List Provisioning
    Workflows. Self-contained Naftiko capability covering one Productiv business surface.'
  tags:
  - Productiv
  - Provisioning Workflows
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PRODUCTIV_API_KEY: PRODUCTIV_API_KEY
capability:
  consumes:
  - type: http
    namespace: developer-provisioning-workflows
    baseUri: https://public-api.productiv.com
    description: Productiv Developer API — Provisioning Workflows business capability. Self-contained, no shared references.
    resources:
    - name: services-export-v1-customer-provisioning-workflows
      path: /services/export/v1/customer/provisioning-workflows
      operations:
      - name: listprovisioningworkflows
        method: GET
        description: Productiv List Provisioning Workflows
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: services-export-v1-customer-provisioning-workflows-workflowId-executions
      path: /services/export/v1/customer/provisioning-workflows/{workflowId}/executions
      operations:
      - name: listprovisioningexecutionsummaries
        method: GET
        description: Productiv List Provisioning Execution Summaries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workflowId
          in: path
          type: string
          description: The unique identifier of the provisioning workflow.
          required: true
        - name: startTime
          in: query
          type: string
          description: Start time for the time range filter.
        - name: endTime
          in: query
          type: string
          description: End time for the time range filter.
    - name: services-export-v1-customer-provisioning-workflows-workflowId-executions-executi
      path: /services/export/v1/customer/provisioning-workflows/{workflowId}/executions/{executionId}
      operations:
      - name: getprovisioningworkflowexecution
        method: GET
        description: Productiv Get Provisioning Workflow Execution
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workflowId
          in: path
          type: string
          description: The unique identifier of the provisioning workflow.
          required: true
        - name: executionId
          in: path
          type: string
          description: The unique identifier of the execution.
          required: true
    authentication:
      type: bearer
      token: '{{env.PRODUCTIV_API_KEY}}'
  exposes:
  - type: rest
    namespace: developer-provisioning-workflows-rest
    port: 8080
    description: REST adapter for Productiv Developer API — Provisioning Workflows. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/services/export/v1/customer/provisioning-workflows
      name: services-export-v1-customer-provisioning-workflows
      description: REST surface for services-export-v1-customer-provisioning-workflows.
      operations:
      - method: GET
        name: listprovisioningworkflows
        description: Productiv List Provisioning Workflows
        call: developer-provisioning-workflows.listprovisioningworkflows
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/export/v1/customer/provisioning-workflows/{workflowid}/executions
      name: services-export-v1-customer-provisioning-workflows-workflowid-executions
      description: REST surface for services-export-v1-customer-provisioning-workflows-workflowId-executions.
      operations:
      - method: GET
        name: listprovisioningexecutionsummaries
        description: Productiv List Provisioning Execution Summaries
        call: developer-provisioning-workflows.listprovisioningexecutionsummaries
        with:
          workflowId: rest.workflowId
          startTime: rest.startTime
          endTime: rest.endTime
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/export/v1/customer/provisioning-workflows/{workflowid}/executions/{executionid}
      name: services-export-v1-customer-provisioning-workflows-workflowid-executions-executi
      description: REST surface for services-export-v1-customer-provisioning-workflows-workflowId-executions-executi.
      operations:
      - method: GET
        name: getprovisioningworkflowexecution
        description: Productiv Get Provisioning Workflow Execution
        call: developer-provisioning-workflows.getprovisioningworkflowexecution
        with:
          workflowId: rest.workflowId
          executionId: rest.executionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: developer-provisioning-workflows-mcp
    port: 9090
    transport: http
    description: MCP adapter for Productiv Developer API — Provisioning Workflows. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: productiv-list-provisioning-workflows
      description: Productiv List Provisioning Workflows
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-provisioning-workflows.listprovisioningworkflows
      outputParameters:
      - type: object
        mapping: $.
    - name: productiv-list-provisioning-execution-summaries
      description: Productiv List Provisioning Execution Summaries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-provisioning-workflows.listprovisioningexecutionsummaries
      with:
        workflowId: tools.workflowId
        startTime: tools.startTime
        endTime: tools.endTime
      outputParameters:
      - type: object
        mapping: $.
    - name: productiv-get-provisioning-workflow-execution
      description: Productiv Get Provisioning Workflow Execution
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: developer-provisioning-workflows.getprovisioningworkflowexecution
      with:
        workflowId: tools.workflowId
        executionId: tools.executionId
      outputParameters:
      - type: object
        mapping: $.