Oracle E-Business Suite · Arazzo Workflow

Oracle EBS Employee Profile Update

Version 1.0.0

Find an employee by number, read the record, then date-tracked update their details.

1 workflow 1 source API 1 provider
View Spec View on GitHub Business ApplicationsE-Business SuiteEnterpriseERPOracleArazzoWorkflows

Provider

oracle-e-business-suite

Workflows

update-employee-profile
Locate an employee and apply a date-tracked profile correction.
Searches for an employee by employee number, reads the record by person identifier, and submits a date-tracked correction updating email and marital status.
3 steps inputs: effectiveDate, emailAddress, employeeNumber, maritalStatus outputs: personId, previousEmail, updatedEmail
1
findEmployee
Search for the employee by employee number, returning the first match.
2
readEmployee
Read the employee record by person identifier to capture the current values before applying the correction.
3
applyUpdate
Submit a date-tracked correction updating the employee email and marital status as of the effective date.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS Employee Profile Update
  summary: Find an employee by number, read the record, then date-tracked update their details.
  description: >-
    An Oracle HRMS maintenance flow. The workflow searches for an employee by
    employee number, reads the full record by person identifier, and submits a
    date-tracked correction to contact details. Each step inlines its request
    so the profile update can be executed without opening the OpenAPI source.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-300.70
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-300.70
      capability_name: HR Operations Management
      spec: oracle-e-business-suite-employee-management-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: employeeManagementApi
  url: ../openapi/oracle-e-business-suite-employee-management-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-employee-profile
  summary: Locate an employee and apply a date-tracked profile correction.
  description: >-
    Searches for an employee by employee number, reads the record by person
    identifier, and submits a date-tracked correction updating email and
    marital status.
  inputs:
    type: object
    required:
    - employeeNumber
    - effectiveDate
    - emailAddress
    - maritalStatus
    properties:
      employeeNumber:
        type: string
        description: Employee number to locate.
      effectiveDate:
        type: string
        description: Effective date for the date-tracked update in YYYY-MM-DD format.
      emailAddress:
        type: string
        description: New email address.
      maritalStatus:
        type: string
        description: New marital status.
  steps:
  - stepId: findEmployee
    description: >-
      Search for the employee by employee number, returning the first match.
    operationId: getEmployees
    parameters:
    - name: employeeNumber
      in: query
      value: $inputs.employeeNumber
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      personId: $response.body#/items/0/personId
  - stepId: readEmployee
    description: >-
      Read the employee record by person identifier to capture the current
      values before applying the correction.
    operationId: getEmployeeById
    parameters:
    - name: personId
      in: path
      value: $steps.findEmployee.outputs.personId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentEmail: $response.body#/emailAddress
  - stepId: applyUpdate
    description: >-
      Submit a date-tracked correction updating the employee email and marital
      status as of the effective date.
    operationId: updateEmployee
    parameters:
    - name: personId
      in: path
      value: $steps.findEmployee.outputs.personId
    requestBody:
      contentType: application/json
      payload:
        effectiveDate: $inputs.effectiveDate
        dateTrackUpdateMode: CORRECTION
        emailAddress: $inputs.emailAddress
        maritalStatus: $inputs.maritalStatus
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedEmail: $response.body#/emailAddress
      lastUpdateDate: $response.body#/lastUpdateDate
  outputs:
    personId: $steps.findEmployee.outputs.personId
    previousEmail: $steps.readEmployee.outputs.currentEmail
    updatedEmail: $steps.applyUpdate.outputs.updatedEmail

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-e-business-suite-employee-profile-update-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.