Workday Recruiting · Capability

Workday Recruiting REST API — Applicants

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

Run with Naftiko Workday RecruitingApplicants

What You Can Do

GET
Listapplicants — Workday Recruiting List Applicants
/v1/applicants
POST
Importapplicants — Workday Recruiting Import Applicants in Bulk
/v1/applicants/import

MCP Tools

workday-recruiting-list-applicants

Workday Recruiting List Applicants

read-only idempotent
workday-recruiting-import-applicants-bulk

Workday Recruiting Import Applicants in Bulk

Capability Spec

rest-applicants.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Recruiting REST API — Applicants
  description: 'Workday Recruiting REST API — Applicants. 2 operations. Lead operation: Workday Recruiting List Applicants.
    Self-contained Naftiko capability covering one Workday Recruiting business surface.'
  tags:
  - Workday Recruiting
  - Applicants
  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-applicants
    baseUri: https://{tenant}.workday.com/ccx/api/recruiting/v41.2
    description: Workday Recruiting REST API — Applicants business capability. Self-contained, no shared references.
    resources:
    - name: applicants
      path: /applicants
      operations:
      - name: listapplicants
        method: GET
        description: Workday Recruiting List Applicants
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: applicants-import
      path: /applicants/import
      operations:
      - name: importapplicants
        method: POST
        description: Workday Recruiting Import Applicants in Bulk
        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-applicants-rest
    port: 8080
    description: REST adapter for Workday Recruiting REST API — Applicants. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/applicants
      name: applicants
      description: REST surface for applicants.
      operations:
      - method: GET
        name: listapplicants
        description: Workday Recruiting List Applicants
        call: rest-applicants.listapplicants
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applicants/import
      name: applicants-import
      description: REST surface for applicants-import.
      operations:
      - method: POST
        name: importapplicants
        description: Workday Recruiting Import Applicants in Bulk
        call: rest-applicants.importapplicants
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-applicants-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Recruiting REST API — Applicants. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: workday-recruiting-list-applicants
      description: Workday Recruiting List Applicants
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-applicants.listapplicants
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-recruiting-import-applicants-bulk
      description: Workday Recruiting Import Applicants in Bulk
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-applicants.importapplicants
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.