Oracle Integration · Arazzo Workflow

Oracle Integration Configure and Test a Connection

Version 1.0.0

Update a connection's properties, test connectivity, and refresh its metadata on success.

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

Provider

oracle-integration

Workflows

provision-connection
Update connection properties, test connectivity, and refresh metadata when the test passes.
Reads the connection, applies connection and security property updates, tests the connection, and refreshes metadata only when the test reports SUCCESS.
4 steps inputs: connectionId, password, securityPolicy, username outputs: connectionName, refreshedStatus, testStatus
1
getConnection
Retrieve the connection to confirm it exists and capture its adapter type before applying updates.
2
updateConnection
Apply the security policy connection property and the username and password security properties to the connection.
3
testConnection
Test the connection to verify connectivity using the newly applied properties.
4
refreshMetadata
Refresh the connection metadata so adapter operations reflect the live endpoint now that the connection tested successfully.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle Integration Configure and Test a Connection
  summary: Update a connection's properties, test connectivity, and refresh its metadata on success.
  description: >-
    The standard connection bring-up flow. The workflow reads the current
    connection, applies updated connection and security properties, runs a
    connectivity test, and then branches: when the test succeeds it refreshes the
    connection metadata so adapter operations reflect the live endpoint, and when
    the test fails it ends without refreshing. 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: connectionsApi
  url: ../openapi/oracle-integration-connections-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-connection
  summary: Update connection properties, test connectivity, and refresh metadata when the test passes.
  description: >-
    Reads the connection, applies connection and security property updates, tests
    the connection, and refreshes metadata only when the test reports SUCCESS.
  inputs:
    type: object
    required:
    - connectionId
    - username
    - password
    properties:
      connectionId:
        type: string
        description: The connection identifier (e.g. SALESFORCE_CONNECTION).
      securityPolicy:
        type: string
        description: The security policy connection property value.
        default: USERNAME_PASSWORD_TOKEN
      username:
        type: string
        description: The username security property value.
      password:
        type: string
        description: The password security property value.
  steps:
  - stepId: getConnection
    description: >-
      Retrieve the connection to confirm it exists and capture its adapter type
      before applying updates.
    operationId: getConnection
    parameters:
    - name: id
      in: path
      value: $inputs.connectionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      connectionName: $response.body#/name
      adapterType: $response.body#/adapterType
  - stepId: updateConnection
    description: >-
      Apply the security policy connection property and the username and password
      security properties to the connection.
    operationId: updateConnection
    parameters:
    - name: id
      in: path
      value: $inputs.connectionId
    requestBody:
      contentType: application/json
      payload:
        connectionProperties:
        - propertyName: securityPolicy
          propertyValue: $inputs.securityPolicy
        securityProperties:
        - propertyName: username
          propertyValue: $inputs.username
        - propertyName: password
          propertyValue: $inputs.password
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedStatus: $response.body#/status
  - stepId: testConnection
    description: >-
      Test the connection to verify connectivity using the newly applied
      properties.
    operationId: testConnection
    parameters:
    - name: id
      in: path
      value: $inputs.connectionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      testStatus: $response.body#/status
      testMessage: $response.body#/message
    onSuccess:
    - name: testPassed
      type: goto
      stepId: refreshMetadata
      criteria:
      - context: $response.body
        condition: $.status == "SUCCESS"
        type: jsonpath
    - name: testFailed
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "FAILURE"
        type: jsonpath
  - stepId: refreshMetadata
    description: >-
      Refresh the connection metadata so adapter operations reflect the live
      endpoint now that the connection tested successfully.
    operationId: refreshConnectionMetadata
    parameters:
    - name: id
      in: path
      value: $inputs.connectionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      refreshedStatus: $response.body#/status
      percentageComplete: $response.body#/percentageComplete
  outputs:
    connectionName: $steps.getConnection.outputs.connectionName
    testStatus: $steps.testConnection.outputs.testStatus
    refreshedStatus: $steps.refreshMetadata.outputs.refreshedStatus

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-provision-connection-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.