Workday Recruiting · Capability

Workday Recruiting REST API — Job Applications

Workday Recruiting REST API — Job Applications. 4 operations. Lead operation: Workday Recruiting List Job Applications. Self-contained Naftiko capability covering one Workday Recruiting business surface.

Run with Naftiko Workday RecruitingJob Applications

What You Can Do

GET
Listjobapplications — Workday Recruiting List Job Applications
/v1/jobapplications
GET
Getjobapplication — Workday Recruiting Get a Job Application
/v1/jobapplications/{id}
POST
Movecandidatestage — Workday Recruiting Move Candidate to a Different Stage
/v1/jobapplications/{id}/move
POST
Initiateoffer — Workday Recruiting Initiate an Offer
/v1/jobapplications/{id}/offer

MCP Tools

workday-recruiting-list-job-applications

Workday Recruiting List Job Applications

read-only idempotent
workday-recruiting-get-job-application

Workday Recruiting Get a Job Application

read-only idempotent
workday-recruiting-move-candidate-different

Workday Recruiting Move Candidate to a Different Stage

workday-recruiting-initiate-offer

Workday Recruiting Initiate an Offer

Capability Spec

rest-job-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Recruiting REST API — Job Applications
  description: 'Workday Recruiting REST API — Job Applications. 4 operations. Lead operation: Workday Recruiting List Job
    Applications. Self-contained Naftiko capability covering one Workday Recruiting business surface.'
  tags:
  - Workday Recruiting
  - Job Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_RECRUITING_API_KEY: WORKDAY_RECRUITING_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-job-applications
    baseUri: https://{tenant}.workday.com/ccx/api/recruiting/v41.2
    description: Workday Recruiting REST API — Job Applications business capability. Self-contained, no shared references.
    resources:
    - name: jobApplications
      path: /jobApplications
      operations:
      - name: listjobapplications
        method: GET
        description: Workday Recruiting List Job Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobRequisition
          in: query
          type: string
          description: Filter by job requisition Workday ID
        - name: candidate
          in: query
          type: string
          description: Filter by candidate Workday ID
        - name: stage
          in: query
          type: string
          description: Filter by current recruiting stage
    - name: jobApplications-id
      path: /jobApplications/{id}
      operations:
      - name: getjobapplication
        method: GET
        description: Workday Recruiting Get a Job Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: jobApplications-id-move
      path: /jobApplications/{id}/move
      operations:
      - name: movecandidatestage
        method: POST
        description: Workday Recruiting Move Candidate to a Different Stage
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: jobApplications-id-offer
      path: /jobApplications/{id}/offer
      operations:
      - name: initiateoffer
        method: POST
        description: Workday Recruiting Initiate an Offer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.WORKDAY_RECRUITING_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-job-applications-rest
    port: 8080
    description: REST adapter for Workday Recruiting REST API — Job Applications. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/jobapplications
      name: jobapplications
      description: REST surface for jobApplications.
      operations:
      - method: GET
        name: listjobapplications
        description: Workday Recruiting List Job Applications
        call: rest-job-applications.listjobapplications
        with:
          jobRequisition: rest.jobRequisition
          candidate: rest.candidate
          stage: rest.stage
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/jobapplications/{id}
      name: jobapplications-id
      description: REST surface for jobApplications-id.
      operations:
      - method: GET
        name: getjobapplication
        description: Workday Recruiting Get a Job Application
        call: rest-job-applications.getjobapplication
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/jobapplications/{id}/move
      name: jobapplications-id-move
      description: REST surface for jobApplications-id-move.
      operations:
      - method: POST
        name: movecandidatestage
        description: Workday Recruiting Move Candidate to a Different Stage
        call: rest-job-applications.movecandidatestage
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/jobapplications/{id}/offer
      name: jobapplications-id-offer
      description: REST surface for jobApplications-id-offer.
      operations:
      - method: POST
        name: initiateoffer
        description: Workday Recruiting Initiate an Offer
        call: rest-job-applications.initiateoffer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-job-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Recruiting REST API — Job Applications. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: workday-recruiting-list-job-applications
      description: Workday Recruiting List Job Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-job-applications.listjobapplications
      with:
        jobRequisition: tools.jobRequisition
        candidate: tools.candidate
        stage: tools.stage
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-recruiting-get-job-application
      description: Workday Recruiting Get a Job Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-job-applications.getjobapplication
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-recruiting-move-candidate-different
      description: Workday Recruiting Move Candidate to a Different Stage
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-job-applications.movecandidatestage
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-recruiting-initiate-offer
      description: Workday Recruiting Initiate an Offer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-job-applications.initiateoffer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.