Oracle E-Business Suite · Arazzo Workflow

Oracle EBS Employee Onboarding

Version 1.0.0

Resolve organization and position, create an employee, then read the record back.

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

Provider

oracle-e-business-suite

Workflows

onboard-employee
Resolve org and position, hire an employee, and confirm the record.
Resolves an HR organization by name and a position by name, creates an employee assigned to them, and reads the employee back to confirm the hire and its assignment.
4 steps inputs: businessGroupId, firstName, hireDate, lastName, organizationName, positionName outputs: assignmentId, employeeNumber, personId
1
findOrganization
Look up the HR organization by name within the business group, returning the first match.
2
findPosition
Look up the position by name within the resolved organization, returning the first match.
3
createEmployee
Create the employee record assigned to the resolved organization, position, and job.
4
confirmEmployee
Read the employee back by person identifier to confirm the hire and capture the created assignment.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS Employee Onboarding
  summary: Resolve organization and position, create an employee, then read the record back.
  description: >-
    An Oracle HRMS hire flow. The workflow looks up the target organization and
    position, creates a new employee assigned to them, and reads the employee
    back by person identifier to confirm the assignment was created. Each step
    inlines its request so the onboarding chain can be executed without opening
    the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-300
  - 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
      capability_name: Human Capital Management
      spec: oracle-e-business-suite-organization-api-openapi.yml
      confidence: 0.7
    - 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
- name: organizationApi
  url: ../openapi/oracle-e-business-suite-organization-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-employee
  summary: Resolve org and position, hire an employee, and confirm the record.
  description: >-
    Resolves an HR organization by name and a position by name, creates an
    employee assigned to them, and reads the employee back to confirm the hire
    and its assignment.
  inputs:
    type: object
    required:
    - businessGroupId
    - organizationName
    - positionName
    - firstName
    - lastName
    - hireDate
    properties:
      businessGroupId:
        type: integer
        description: Business group identifier.
      organizationName:
        type: string
        description: HR organization name to assign the employee to.
      positionName:
        type: string
        description: Position name to assign the employee to.
      firstName:
        type: string
        description: Employee first name.
      lastName:
        type: string
        description: Employee last name.
      hireDate:
        type: string
        description: Hire date in YYYY-MM-DD format.
  steps:
  - stepId: findOrganization
    description: >-
      Look up the HR organization by name within the business group, returning
      the first match.
    operationId: getOrganizations
    parameters:
    - name: name
      in: query
      value: $inputs.organizationName
    - name: businessGroupId
      in: query
      value: $inputs.businessGroupId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      organizationId: $response.body#/items/0/organizationId
  - stepId: findPosition
    description: >-
      Look up the position by name within the resolved organization, returning
      the first match.
    operationId: getPositions
    parameters:
    - name: name
      in: query
      value: $inputs.positionName
    - name: organizationId
      in: query
      value: $steps.findOrganization.outputs.organizationId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      positionId: $response.body#/items/0/positionId
      jobId: $response.body#/items/0/jobId
  - stepId: createEmployee
    description: >-
      Create the employee record assigned to the resolved organization,
      position, and job.
    operationId: createEmployee
    requestBody:
      contentType: application/json
      payload:
        firstName: $inputs.firstName
        lastName: $inputs.lastName
        hireDate: $inputs.hireDate
        businessGroupId: $inputs.businessGroupId
        organizationId: $steps.findOrganization.outputs.organizationId
        positionId: $steps.findPosition.outputs.positionId
        jobId: $steps.findPosition.outputs.jobId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      personId: $response.body#/personId
      employeeNumber: $response.body#/employeeNumber
  - stepId: confirmEmployee
    description: >-
      Read the employee back by person identifier to confirm the hire and
      capture the created assignment.
    operationId: getEmployeeById
    parameters:
    - name: personId
      in: path
      value: $steps.createEmployee.outputs.personId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assignmentId: $response.body#/assignment/assignmentId
      currentEmployeeFlag: $response.body#/currentEmployeeFlag
  outputs:
    personId: $steps.createEmployee.outputs.personId
    employeeNumber: $steps.createEmployee.outputs.employeeNumber
    assignmentId: $steps.confirmEmployee.outputs.assignmentId

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-onboarding-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.