PeopleSoft Search API

Search and indexing operations

Operations 2

GET /search PeopleSoft Search Content #
POST /index PeopleSoft Trigger Index Build #

Documentation

📖
Documentation
https://docs.oracle.com/cd/E92519_02/pt856pbr3/eng/pt/tpcl/index.html
📖
Authentication
https://docs.oracle.com/cd/F30998_01/pt858pbr2/eng/pt/tsec/concept_UnderstandingOAuth2_0.html
📖
Documentation
https://docs.oracle.com/cd/E52319_01/infoportal/asf.html
📖
Documentation
https://docs.oracle.com/en/applications/peoplesoft/integration-broker/
📖
Documentation
https://docs.oracle.com/cd/E92519_02/pt856pbr3/eng/pt/trws/concept_QueryAccessServiceOperations-1f7e36.html
📖
Documentation
https://docs.oracle.com/cd/E92519_02/pt856pbr3/eng/pt/tcpi/index.html
📖
Documentation
https://docs.oracle.com/cd/E52319_01/infoportal/search.html
📖
Documentation
https://docs.oracle.com/cd/E41507_01/epm91pbr3/eng/epm/eewe/concept_PeopleSoftEventsandNotificationsFrameworkOverview-227ff2.html
📖
Documentation
https://docs.oracle.com/cd/E52319_01/infoportal/chatbot.html
📖
Documentation
https://docs.oracle.com/en/applications/peoplesoft/
📖
Documentation
https://docs.oracle.com/cd/E24150_01/pt851h2/eng/psbooks/tprs/htm/tprs05.htm
📖
Documentation
https://docs.oracle.com/cd/E52319_01/infoportal/cloudmgr.html
📖
Documentation
https://docs.oracle.com/cd/E52319_01/infoportal/pum.html
📖
Documentation
https://docs.oracle.com/cd/F28299_01/pt857pbr3/eng/pt/tpvg/concept_PeopleSoftPivotGridOverview-1e7c6b.html
📖
Documentation
https://docs.oracle.com/en/applications/peoplesoft/human-capital-management/index.html
📖
APIReference
https://docs.oracle.com/cd/F58024_01/hcm92pbr43/eng/hcm/ecch/UnderstandingRestApiEndpointsForPeoplesoftSkills.html
📖
Documentation
https://docs.oracle.com/cd/F85027_01/hcm92pbr47/eng/hcm/ecch/UnderstandingRESTAPIEndpointsForPeopleSoftJobSearchServiceshrsjobs.html
📖
Documentation
https://docs.oracle.com/en/applications/peoplesoft/financial-management/index.html
📖
Documentation
https://docs.oracle.com/cd/F92336_01/fscm92pbr50/eng/fscm/eccf/UnderstandingRestApiEndpointsForPeoplesoft.html
📖
Documentation
https://docs.oracle.com/cd/F95753_01/crm92pbr22/eng/crm/eccc/UnderstandingRestApiEndpointsForPeoplesoft.html
📖
Documentation
https://docs.oracle.com/en/applications/peoplesoft/campus-solutions/index.html
📖
Documentation
https://docs.oracle.com/cd/E41507_01/epm91pbr3/eng/epm/penw/index.html
📖
Documentation
https://docs.oracle.com/cd/F75142_01/ps91pbr15/eng/ps/psad/PeopleSoftInteractionHubOverview.html

Specifications

Other Resources

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/peoplesoft-search-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

peoplesoft-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PeopleSoft Application Services Framework Accounts Payable Search API
  description: Modern REST API layer introduced in PeopleTools 8.59 that produces fully compliant OpenAPI/Swagger specifications, supports proper HTTP status codes, uniform URLs, and JSON payloads for integration with Oracle Integration Cloud, mobile apps, and microservices.
  version: 1.0.0
  contact:
    name: Oracle Support
    email: support@oracle.com
    url: https://support.oracle.com
  license:
    name: Proprietary
    url: https://www.oracle.com/contracts/
servers:
- url: https://{hostname}:{port}/psft/asf/v1
  description: PeopleSoft Instance
  variables:
    hostname:
      description: PeopleSoft server hostname
      default: localhost
    port:
      description: PeopleSoft server port
      default: '8000'
tags:
- name: Search
  description: Search and indexing operations
paths:
  /search:
    get:
      summary: PeopleSoft Search Content
      description: Execute a full-text search across PeopleSoft indexed content.
      operationId: searchContent
      tags:
      - Search
      security:
      - basicAuth: []
      parameters:
      - name: q
        in: query
        required: true
        description: Search query string
        schema:
          type: string
        example: example_value
      - name: category
        in: query
        description: Search category to filter results
        schema:
          type: string
        example: example_value
      - name: maxResults
        in: query
        description: Maximum number of results to return
        schema:
          type: integer
        example: 42
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                  totalCount:
                    type: integer
        '401':
          description: Unauthorized
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /index:
    post:
      summary: PeopleSoft Trigger Index Build
      description: Trigger a search index build or incremental update.
      operationId: triggerIndexBuild
      tags:
      - Search
      security:
      - basicAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                indexName:
                  type: string
                  description: Name of the search index
                buildType:
                  type: string
                  enum:
                  - full
                  - incremental
                  description: Type of index build
      responses:
        '202':
          description: Index build initiated
        '401':
          description: Unauthorized
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://{hostname}:{port}/psft/oauth/authorize
          tokenUrl: https://{hostname}:{port}/psft/oauth/token
          scopes: {}
externalDocs:
  description: Application Services Framework Documentation
  url: https://docs.oracle.com/cd/E52319_01/infoportal/asf.html