PeopleSoft · Arazzo Workflow

PeopleSoft List and Execute a Query

Version 1.0.0

List available PS Query definitions, confirm the requested query exists, then execute it with paging.

1 workflow 1 source API 1 provider
View Spec View on GitHub Campus SolutionsCRMEnterprise SoftwareERPFinancial ManagementHCMSupply Chain ManagementArazzoWorkflows

Provider

peoplesoft

Workflows

query-export
Discover a PS Query definition then execute it for results.
Lists query definitions and executes the named query with optional paging, returning the rows and total row count.
2 steps inputs: authorization, isConnectedQuery, maxRows, offset, queryName outputs: queries, rows, totalRows
1
listQueries
Retrieve the catalog of available PeopleSoft Query definitions.
2
executeQuery
Execute the named query and retrieve the result rows with paging applied.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: PeopleSoft List and Execute a Query
  summary: List available PS Query definitions, confirm the requested query exists, then execute it with paging.
  description: >-
    A reporting flow over the PeopleSoft Query Access Service. It lists the
    available PeopleSoft Query definitions, then executes the requested query by
    name with row-limit and offset paging, returning the result rows and the
    total row count. 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: queriesApi
  url: ../openapi/peoplesoft-queries-api-openapi.yml
  type: openapi
workflows:
- workflowId: query-export
  summary: Discover a PS Query definition then execute it for results.
  description: >-
    Lists query definitions and executes the named query with optional paging,
    returning the rows and total row count.
  inputs:
    type: object
    required:
    - authorization
    - queryName
    properties:
      authorization:
        type: string
        description: HTTP Basic auth header value (e.g. "Basic dXNlcjpwYXNz").
      queryName:
        type: string
        description: The PeopleSoft Query name to execute.
      isConnectedQuery:
        type: boolean
        description: Whether the named query is a Connected Query.
        default: false
      maxRows:
        type: integer
        description: Maximum number of rows to return.
        default: 100
      offset:
        type: integer
        description: Row offset for pagination.
        default: 0
  steps:
  - stepId: listQueries
    description: >-
      Retrieve the catalog of available PeopleSoft Query definitions.
    operationId: listQueries
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      queries: $response.body#/queries
  - stepId: executeQuery
    description: >-
      Execute the named query and retrieve the result rows with paging applied.
    operationId: executeQuery
    parameters:
    - name: queryName
      in: path
      value: $inputs.queryName
    - name: isConnectedQuery
      in: query
      value: $inputs.isConnectedQuery
    - name: maxRows
      in: query
      value: $inputs.maxRows
    - name: offset
      in: query
      value: $inputs.offset
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      rows: $response.body#/rows
      totalRows: $response.body#/totalRows
  outputs:
    queries: $steps.listQueries.outputs.queries
    rows: $steps.executeQuery.outputs.rows
    totalRows: $steps.executeQuery.outputs.totalRows

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/peoplesoft-query-export-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.