Oracle Integration · Arazzo Workflow

Oracle Integration Deactivate an Integration

Version 1.0.0

Confirm an integration is active and deactivate it back to a configured state.

1 workflow 1 source API 1 provider
View Spec View on GitHub API ManagementAutomationB2B IntegrationCloud IntegrationEnterprise IntegrationIntegrationiPaaSProcess AutomationArazzoWorkflows

Provider

oracle-integration

Workflows

deactivate-integration
Deactivate an active integration and wait for it to leave the active state.
Verifies the integration is ACTIVATED, posts a CONFIGURED status update to deactivate it, and polls the activation status until it is no longer active.
3 steps inputs: integrationId outputs: finalStatus, integrationName
1
getIntegration
Retrieve the integration to confirm it is currently ACTIVATED before requesting deactivation.
2
deactivate
Request deactivation by posting a CONFIGURED status to the integration. Returns the updated integration representation.
3
confirmDeactivation
Poll the activation status endpoint until the integration reports it is no longer ACTIVATED.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle Integration Deactivate an Integration
  summary: Confirm an integration is active and deactivate it back to a configured state.
  description: >-
    The inverse of activation, used to safely take an integration offline for
    maintenance or replacement. The workflow retrieves the integration to confirm
    it is currently ACTIVATED, posts a CONFIGURED status to deactivate it, and
    then polls the activation status endpoint until the integration reports it is
    no longer active. Every step spells out its request inline so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: integrationsApi
  url: ../openapi/oracle-integration-integrations-api-openapi.yml
  type: openapi
workflows:
- workflowId: deactivate-integration
  summary: Deactivate an active integration and wait for it to leave the active state.
  description: >-
    Verifies the integration is ACTIVATED, posts a CONFIGURED status update to
    deactivate it, and polls the activation status until it is no longer active.
  inputs:
    type: object
    required:
    - integrationId
    properties:
      integrationId:
        type: string
        description: The integration identifier including version (e.g. HELLO_WORLD|01.00.0000).
  steps:
  - stepId: getIntegration
    description: >-
      Retrieve the integration to confirm it is currently ACTIVATED before
      requesting deactivation.
    operationId: getIntegration
    parameters:
    - name: id
      in: path
      value: $inputs.integrationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentStatus: $response.body#/status
      integrationName: $response.body#/name
    onSuccess:
    - name: notActive
      type: end
      criteria:
      - context: $response.body
        condition: $.status != "ACTIVATED"
        type: jsonpath
    - name: proceedToDeactivate
      type: goto
      stepId: deactivate
      criteria:
      - context: $response.body
        condition: $.status == "ACTIVATED"
        type: jsonpath
  - stepId: deactivate
    description: >-
      Request deactivation by posting a CONFIGURED status to the integration.
      Returns the updated integration representation.
    operationId: updateIntegrationStatus
    parameters:
    - name: id
      in: path
      value: $inputs.integrationId
    requestBody:
      contentType: application/json
      payload:
        status: CONFIGURED
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedStatus: $response.body#/status
  - stepId: confirmDeactivation
    description: >-
      Poll the activation status endpoint until the integration reports it is no
      longer ACTIVATED.
    operationId: getIntegrationActivationStatus
    parameters:
    - name: id
      in: path
      value: $inputs.integrationId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.status != "ACTIVATED"
      type: jsonpath
    outputs:
      finalStatus: $response.body#/status
  outputs:
    integrationName: $steps.getIntegration.outputs.integrationName
    finalStatus: $steps.confirmDeactivation.outputs.finalStatus

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/oracle-integration-deactivate-integration-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.