Workday · Capability

Workday Staffing API — Job Profiles

Workday Staffing API — Job Profiles. 2 operations. Lead operation: Get Job Profiles. Self-contained Naftiko capability covering one Workday business surface.

Run with Naftiko WorkdayJob Profiles

What You Can Do

GET
Getjobprofiles — Get Job Profiles
/v1/jobprofiles
GET
Getjobprofilebyid — Get Job Profile by Id
/v1/jobprofiles/{id}

MCP Tools

get-job-profiles

Get Job Profiles

read-only idempotent
get-job-profile-id

Get Job Profile by Id

read-only idempotent

Capability Spec

staffing-job-profiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Staffing API — Job Profiles
  description: 'Workday Staffing API — Job Profiles. 2 operations. Lead operation: Get Job Profiles. Self-contained Naftiko
    capability covering one Workday business surface.'
  tags:
  - Workday
  - Job Profiles
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_API_KEY: WORKDAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: staffing-job-profiles
    baseUri: https://wd2-impl-services1.workday.com/ccx/api/staffing/v1/{tenant}
    description: Workday Staffing API — Job Profiles business capability. Self-contained, no shared references.
    resources:
    - name: jobProfiles
      path: /jobProfiles
      operations:
      - name: getjobprofiles
        method: GET
        description: Get Job Profiles
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: jobProfiles-ID
      path: /jobProfiles/{ID}
      operations:
      - name: getjobprofilebyid
        method: GET
        description: Get Job Profile by Id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_API_KEY}}'
  exposes:
  - type: rest
    namespace: staffing-job-profiles-rest
    port: 8080
    description: REST adapter for Workday Staffing API — Job Profiles. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/jobprofiles
      name: jobprofiles
      description: REST surface for jobProfiles.
      operations:
      - method: GET
        name: getjobprofiles
        description: Get Job Profiles
        call: staffing-job-profiles.getjobprofiles
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/jobprofiles/{id}
      name: jobprofiles-id
      description: REST surface for jobProfiles-ID.
      operations:
      - method: GET
        name: getjobprofilebyid
        description: Get Job Profile by Id
        call: staffing-job-profiles.getjobprofilebyid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: staffing-job-profiles-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Staffing API — Job Profiles. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-job-profiles
      description: Get Job Profiles
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: staffing-job-profiles.getjobprofiles
      outputParameters:
      - type: object
        mapping: $.
    - name: get-job-profile-id
      description: Get Job Profile by Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: staffing-job-profiles.getjobprofilebyid
      outputParameters:
      - type: object
        mapping: $.