PeopleSoft CRM API

Customer Relationship Management REST API endpoints and integration points for customer data, case management, sales, and marketing.

OpenAPI Specification

crm.yml Raw ↑
openapi: 3.1.0
info:
  title: PeopleSoft CRM API
  description: Customer Relationship Management REST API endpoints and integration
    points for customer data, case management, sales, and marketing.
  version: 1.0.0
  contact:
    name: Oracle Support
    email: [email protected]
    url: https://support.oracle.com
  license:
    name: Proprietary
    url: https://www.oracle.com/contracts/
servers:
- url: https://{hostname}:{port}/psft/api/crm/v1
  description: PeopleSoft Instance
  variables:
    hostname:
      description: PeopleSoft server hostname
      default: localhost
    port:
      description: PeopleSoft server port
      default: '8000'
externalDocs:
  description: PeopleSoft CRM REST API Documentation
  url: https://docs.oracle.com/cd/F95753_01/crm92pbr22/eng/crm/eccc/UnderstandingRestApiEndpointsForPeoplesoft.html
tags:
- name: Customers
  description: Customer data operations
- name: Cases
  description: Case management operations
- name: Sales
  description: Sales operations
paths:
  /customers:
    get:
      summary: PeopleSoft List Customers
      description: Retrieve customer records.
      operationId: listCustomers
      tags:
      - Customers
      security:
      - basicAuth: []
      parameters:
      - name: search
        in: query
        description: Search term for customer name or ID
        schema:
          type: string
        example: example_value
      responses:
        '200':
          description: Successful response with customer list
          content:
            application/json:
              schema:
                type: object
                properties:
                  customers:
                    type: array
                    items:
                      type: object
        '401':
          description: Unauthorized
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /customers/{customerId}:
    get:
      summary: PeopleSoft Get Customer
      description: Retrieve details for a specific customer.
      operationId: getCustomer
      tags:
      - Customers
      security:
      - basicAuth: []
      parameters:
      - name: customerId
        in: path
        required: true
        description: The customer identifier
        schema:
          type: string
        example: PS123456
      responses:
        '200':
          description: Customer details
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
        '404':
          description: Customer not found
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /cases:
    get:
      summary: PeopleSoft List Cases
      description: Retrieve support and service cases.
      operationId: listCases
      tags:
      - Cases
      security:
      - basicAuth: []
      responses:
        '200':
          description: Successful response with cases
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      summary: PeopleSoft Create Case
      description: Create a new support or service case.
      operationId: createCase
      tags:
      - Cases
      security:
      - basicAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Case created
        '400':
          description: Bad request
        '401':
          description: Unauthorized
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /sales/opportunities:
    get:
      summary: PeopleSoft List Opportunities
      description: Retrieve sales opportunities.
      operationId: listOpportunities
      tags:
      - Sales
      security:
      - basicAuth: []
      responses:
        '200':
          description: Successful response with opportunities
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
  schemas:
    Case:
      type: object
      description: PeopleSoft CRM service case.
      properties:
        CASE_ID:
          type: string
          description: Case ID.
          example: CASE001234
        BUSINESS_UNIT:
          type: string
          description: Business unit.
          example: US001
        CUST_ID:
          type: string
          description: Customer ID.
          example: CUST005678
        DESCR:
          type: string
          description: Case description.
          example: Product defect inquiry
        PRIORITY:
          type: string
          description: Priority.
          enum:
          - '1'
          - '2'
          - '3'
          - '4'
          example: '2'
        STATUS:
          type: string
          description: Case status.
          enum:
          - Open
          - In Progress
          - Resolved
          - Closed
          example: Open
        CATEGORY:
          type: string
          description: Case category.
          example: Product Support
        ASSIGNED_TO:
          type: string
          description: Assigned agent.
          example: AGT001
        CREATED_DTTM:
          type: string
          format: date-time
          description: Created date/time.
          example: '2026-04-17T09:30:00Z'
        RESOLVED_DTTM:
          type: string
          format: date-time
          description: Resolved date/time.