IBM WebSphere · Arazzo Workflow

WebSphere Data Source Connectivity Check

Version 1.0.0

Find a JDBC data source, read its configuration, and test its connection.

1 workflow 1 source API 1 provider
View Spec View on GitHub Application ServerCloud-NativeEnterprise JavaJ2EEMicroservicesMiddlewareArazzoWorkflows

Provider

websphere

Workflows

check-datasource-connectivity
Read a JDBC data source configuration and test its database connection.
Locates a data source in the configured list, reads its pool settings, and runs the connection test, returning whether the database responded.
3 steps inputs: dsName outputs: connectionSuccess, dsName, jndiName
1
listDataSources
List the configured JDBC data sources so the target can be confirmed before reading or testing it.
2
getDataSource
Read the target data source to capture its JNDI name and connection pool configuration.
3
testConnection
Run the built-in connection test for the data source to confirm the database is reachable.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: WebSphere Data Source Connectivity Check
  summary: Find a JDBC data source, read its configuration, and test its connection.
  description: >-
    A common WebSphere resource diagnostic. The workflow lists the configured
    JDBC data sources to locate the target, reads its connection pool
    configuration, and runs the built-in connection test to confirm the database
    is reachable. 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: resourcesApi
  url: ../openapi/websphere-resources-api-openapi.yml
  type: openapi
workflows:
- workflowId: check-datasource-connectivity
  summary: Read a JDBC data source configuration and test its database connection.
  description: >-
    Locates a data source in the configured list, reads its pool settings, and
    runs the connection test, returning whether the database responded.
  inputs:
    type: object
    required:
    - dsName
    properties:
      dsName:
        type: string
        description: The name of the JDBC data source to test.
  steps:
  - stepId: listDataSources
    description: >-
      List the configured JDBC data sources so the target can be confirmed before
      reading or testing it.
    operationId: listDataSources
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      dataSources: $response.body
  - stepId: getDataSource
    description: >-
      Read the target data source to capture its JNDI name and connection pool
      configuration.
    operationId: getDataSource
    parameters:
    - name: dsName
      in: path
      value: $inputs.dsName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      jndiName: $response.body#/jndiName
      databaseType: $response.body#/databaseType
      poolStatus: $response.body#/status
  - stepId: testConnection
    description: >-
      Run the built-in connection test for the data source to confirm the
      database is reachable.
    operationId: testDataSourceConnection
    parameters:
    - name: dsName
      in: path
      value: $inputs.dsName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      success: $response.body#/success
      message: $response.body#/message
  outputs:
    dsName: $inputs.dsName
    jndiName: $steps.getDataSource.outputs.jndiName
    connectionSuccess: $steps.testConnection.outputs.success

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/websphere-datasource-connectivity-check-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.