Workday Integrations · Capability

Workday Integrations Workday REST API — Job Profiles

Workday Integrations Workday REST API — Job Profiles. 2 operations. Lead operation: Workday Integrations List job profiles. Self-contained Naftiko capability covering one Workday Integrations business surface.

Run with Naftiko Workday IntegrationsJob Profiles

What You Can Do

GET
Listjobprofiles — Workday Integrations List job profiles
/v1/jobprofiles
GET
Getjobprofile — Workday Integrations Get a job profile
/v1/jobprofiles/{jobprofileid}

MCP Tools

workday-integrations-list-job-profiles

Workday Integrations List job profiles

read-only idempotent
workday-integrations-get-job-profile

Workday Integrations Get a job profile

read-only idempotent

Capability Spec

rest-job-profiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Integrations Workday REST API — Job Profiles
  description: 'Workday Integrations Workday REST API — Job Profiles. 2 operations. Lead operation: Workday Integrations List
    job profiles. Self-contained Naftiko capability covering one Workday Integrations business surface.'
  tags:
  - Workday Integrations
  - Job Profiles
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_INTEGRATIONS_API_KEY: WORKDAY_INTEGRATIONS_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-job-profiles
    baseUri: https://wd2-impl-services1.workday.com/ccx/api/v1/{tenant}
    description: Workday Integrations Workday REST API — Job Profiles business capability. Self-contained, no shared references.
    resources:
    - name: jobProfiles
      path: /jobProfiles
      operations:
      - name: listjobprofiles
        method: GET
        description: Workday Integrations List job profiles
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: jobProfiles-jobProfileId
      path: /jobProfiles/{jobProfileId}
      operations:
      - name: getjobprofile
        method: GET
        description: Workday Integrations Get a job profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobProfileId
          in: path
          type: string
          description: Workday ID of the job profile
          required: true
    authentication:
      type: bearer
      token: '{{env.WORKDAY_INTEGRATIONS_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-job-profiles-rest
    port: 8080
    description: REST adapter for Workday Integrations Workday REST 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: listjobprofiles
        description: Workday Integrations List job profiles
        call: rest-job-profiles.listjobprofiles
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/jobprofiles/{jobprofileid}
      name: jobprofiles-jobprofileid
      description: REST surface for jobProfiles-jobProfileId.
      operations:
      - method: GET
        name: getjobprofile
        description: Workday Integrations Get a job profile
        call: rest-job-profiles.getjobprofile
        with:
          jobProfileId: rest.jobProfileId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-job-profiles-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Integrations Workday REST API — Job Profiles. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: workday-integrations-list-job-profiles
      description: Workday Integrations List job profiles
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-job-profiles.listjobprofiles
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-integrations-get-job-profile
      description: Workday Integrations Get a job profile
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-job-profiles.getjobprofile
      with:
        jobProfileId: tools.jobProfileId
      outputParameters:
      - type: object
        mapping: $.